SQL
MS SQL and .net Development
Pages
(Move to ...)
Home
▼
Monday, June 29, 2015
Attach Database Failed
›
Sometime you may get below error while attaching a database: Attach database failed for Server 'SERVERNAME\SQLEXPRESS'. (Microsof...
Monday, June 22, 2015
Query to get details of permissions on Database objects
›
Use below query to get details of permissions on Database objects SELECT ulogin.name AS [User Name], CASE princ.type WHEN 'U' TH...
Monday, June 15, 2015
Log backup to replace maintenance plan
›
Use below script to restore maintenance plan from log backup: USE [Master] GO DECLARE @BackupExtention nVarChar(4); SET @BackupExtentio...
Monday, June 1, 2015
Unable to open DTS package in SQL 2008 Management Studio
›
Sometime when we try to import a SQL Server 2000 DTS package into SQL Server 2008 R2 using SSMS, the following error appears : Managing ...
Monday, May 11, 2015
List Table with Identity Column
›
You can use below queries to get the list of all the tables with Identity column: SELECT OBJECT_NAME(ID) AS [Table], Name AS [Column] FR...
‹
›
Home
View web version