Viewing 15 posts - 346 through 360 (of 1,166 total)
February 7, 2007 at 4:44 pm
How to prepare SQL Server 2005 and SQL Server 2000 for changes to daylight saving time in 2007
http://support.microsoft.com/default.aspx?scid=kb;en-us;931975&sd=rss&spid=2855
February 7, 2007 at 4:42 pm
Yes... @DataName = your db name...
at the end of the procedure use your alter database statement...and make sure you use SET MULTI_USER option..
February 7, 2007 at 4:39 pm
In 2005 MP are stored as SSIS packages and not system tables so you can't script them but I believe you can copy the SSIS package from some server to...
February 7, 2007 at 4:07 pm
Some one is connected that db...
Do you any monitoring tools connecting to this db...
What is the error you are getting...when you try change it to multi user mode?
Try the following...
February 7, 2007 at 4:05 pm
I agree with Aaron, if you rely on the HW it is upto you...but it is not advisable...
It matter between 0.5 and 0.05 execution times when the procedure executes many...
February 7, 2007 at 3:17 pm
Indexes will reduce query I/O cost...if the table is small or no where clause in you the query at that time... you don't see any diffence...
Enable STATISTICS I/O run the...
February 7, 2007 at 2:25 pm
You can find the backup files location from system tables...
Check the following script which works in 2000 but I have not tested in 2005...
select
database_name as 'Database_Name' ,
(b. physical_device_name) as...
February 7, 2007 at 2:15 pm
February 6, 2007 at 11:40 pm
May be Barbara referring to the following one...
SQL Server 2000 or SQL Server 2005 may temporarily stop responding on a Windows Server 2003 Service Pack 1-based computer
http://support.microsoft.com/kb/922658
February 5, 2007 at 11:31 pm
It should be as long as it set to autogrow...
When you insert new data and SQL requires more space it will grow automatically...or you can increase the size manually...
February 5, 2007 at 10:55 pm
When you have 12 GB then configure max memory 10 GB and leave 2 GB for OS.
February 5, 2007 at 10:51 pm
What ever the process/job you ran requires the tempdb space and your tempdb ran out of space...
All temporary tables created in tempdb will be dropped at the end of the...
February 5, 2007 at 1:37 pm
I have not done this any time... but check the following thread..
February 4, 2007 at 10:57 pm
SQL Server has long supported two forms of OUTER JOIN syntax, the ANSI syntax (using LEFT OUTER JOIN, RIGHT OUTER JOIN, etc.), and the simplified T-SQL syntax (using *= and...
February 4, 2007 at 10:45 pm
Viewing 15 posts - 346 through 360 (of 1,166 total)