Viewing 15 posts - 196 through 210 (of 279 total)
Information about drop or detach db you can find in the SQL Server Default Trace.
March 2, 2013 at 2:15 am
Execute and post the result:
SELECT state_desc,is_auto_close_on
FROM sys.databases
WHERE name = 'DbName'
February 21, 2013 at 3:20 pm
Rewrite the query or maybe creating a computed column on substring(dsn, 7, 5) and creating index on that column will help this query.
February 21, 2013 at 1:17 pm
srobinson 596 (2/21/2013)
DBCC results...
February 21, 2013 at 12:39 pm
Which mirroring operating mode do you use?
February 20, 2013 at 12:23 am
February 19, 2013 at 2:07 pm
http://msdn.microsoft.com/en-us/library/ms177429.aspx
"Note that if you restore a SQL Server 2005 or SQL Server 2008 database to SQL Server 2012, the database is automatically upgraded...."
February 17, 2013 at 4:24 am
IsSort tell SSIS that a source is sorted eg: via order by or external program that generated a file.
Sort transformation is performing sort.
So if you tell SSIS that you have...
February 15, 2013 at 12:22 pm
I don't know about what you ask?
So "A SQL Server DBA myth a day: (12/30) tempdb should always have one data file per processor core"
February 15, 2013 at 12:25 am
February 14, 2013 at 9:57 am
I had the same or very similar problem, a COM object on x64 ported from sql 2000 and helped installing management studio, still don't know why 🙂
February 14, 2013 at 4:20 am
According to http://msdn.microsoft.com/en-us/library/ms175475.aspx
"
A database user for which the corresponding SQL Server login is undefined or is incorrectly defined on a server instance cannot log in to the instance. Such a...
February 14, 2013 at 4:13 am
Or try http://www.mssqltips.com/sqlservertip/2682/recover-access-to-a-sql-server-instance/ need no instance shutdown or reset.
February 14, 2013 at 3:34 am
Use mirroring. Not the SQL 2005 but the idea is the same eg: http://www.solidq.com/gl-en/News/Pages/Case-Study-Payvision-Migrates-to-SQL-Server-2008-with-Only-4-Seconds-of-Database-Downtime.aspx
February 13, 2013 at 8:11 am
Viewing 15 posts - 196 through 210 (of 279 total)