Dedicated administrator connections are not supported via SSMS as it establishes multiple connections by design Recently i am working on a Server and i want to use DAC (Dedicated Administrator Connection) via SSMS. But i have ended up with following error: Dedicated administrator connections are not supported via SSMS as it establishes multiple connections by design. […]
Author: Mandeep Singh
SQL Query Result set to Html Table
SQL Query Result set to Html Table In this post we will discuss how to get SQL Query Result set to Html Table. Getting SQL query results to a html is very useful. It is very useful for reporting purpose. In my day to day activities as SQL Sever DBA i have to send a report […]
Change Data Capture in SQL Server
Change Data Capture in SQL Server Change data capture in SQL Server is a feature that is introduced in SQL Server 2008. And is called CDC (Change Data Capture). CDC helps SQL Server developers to archiving and capturing data changes without any additional programming. CDC only tracks changes in user-created tables. Because captured data is […]
Foreign key in phpmyadmin
Foreign key in phpmyadmin Setting Foreign key in phpmyadmin is very easy. We just have to follow few simple steps and we are done. Here we are creating three tables(Product_master, Category_master and Order_master). He have to setup Foreign key in Order_master table i.e. refers to product_master and category_master table. Below i am showing you tables structure’s. After […]