Viewing 15 posts - 166 through 180 (of 463 total)
December 21, 2004 at 11:18 am
The reason your log file grew to 2 GB might be that there was a huge transaction which was going on which resulted in the log file to be increased....
December 21, 2004 at 11:16 am
Check this out.
December 21, 2004 at 11:03 am
Check the article below and verify MSDTC to be running. Also try testing using dtcping.exe
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q306843
December 20, 2004 at 3:29 pm
When you insert data using insert into, a null value is submitted for the columns which are not specified in the list of columns. Employee column in EM table might...
December 20, 2004 at 2:42 pm
You can use the command below. Specify the instancename for the /sqlserver parameter.
C:\Progra~1\Tivoli\TSM\TDPSql\tdpsqlc backup master full /sqlauth=int /tsmoptfile=C:\Progra~1\Tivoli\TSM\TDPSql\dsm.opt /sqlserver=servername /logfile=C:\Progra~1\Tivoli\TSM\TDPSql\sqllog_full_System.log
If you use GUI, change the value of parameter...
December 15, 2004 at 1:28 pm
Change the script to
restore database BSISUITE from disk = 'c:\BSISuite_db_200412011801.bak'
WITH MOVE 'Logical_datafile_name' TO 'c:\Program FIles\Microsoft SQL Server\MSSQL\data\BSISuite.mdf',
MOVE 'Logical_logfile_name' TO 'c:\Program Files\Microsoft SQL Server\MSSQL\data\BSISuite_log.ldf' , REPLACE
As steve suggested,...
December 15, 2004 at 10:40 am
BOL says
"Creating a unique index instead of non-unique on the same combination of columns provides additional information for the query optimizer; therefore, creating a unique index is preferred. "
December 14, 2004 at 1:48 pm
Check this article. Describes about installing Analysis service on Windows 2000/2003 cluster.
December 14, 2004 at 10:34 am
I believe one of the reason why oracle dba's do not like sql server for VLDB's is the locking behavior. As you know that when a user is updating data,...
December 14, 2004 at 10:26 am
We capture perfmon data for Active/Passive clusters. For active/active, the only issue i can think about is no. of connection if you have both instances running on the same node....
December 13, 2004 at 2:40 pm
Check this article. Has some good explaination.
December 13, 2004 at 1:21 pm
you can also use sp_add_job
December 13, 2004 at 11:34 am
The script below looks for references to any variable in all storedprocedures. You can save the file as .vbs and pass parameters next to it and execute it from command...
December 13, 2004 at 11:23 am
You can use the script below. Save it as a .vbs file. It gives you the username and its permissions. You can edit it to include other roles also. It...
December 13, 2004 at 10:59 am
Viewing 15 posts - 166 through 180 (of 463 total)