Viewing 15 posts - 31 through 45 (of 92 total)
The msdb database has a table backupset that keeps information of every database backup irrespective of whether the backup ran from a SQL server job, manual or directly to the...
April 30, 2004 at 4:17 pm
I doubt if .8 difference in the buffer cache hit ratio is any indication of any change at all.. It is insignificant unless you have been experiencing any real issues..
April 30, 2004 at 4:03 pm
This is one more reason why you would want to keep your transactions manageable (ie small). So the server does not have to do mammoth undoing when restarted in the middle...
April 28, 2004 at 11:52 am
Without actually understanding the nature of transactions and applications, it is hard to postulate what was precisely going. Any way, couple of things to look into, "recovery interval" configuration option,...
April 27, 2004 at 9:13 pm
Unfortunately I do not have SQL on my home PC.
I remember trying this and, sure it worked:
DECLARE @MySQL nVARCHAR(1050)
SET @MyDB = N'Master'
...April 27, 2004 at 9:05 pm
Try:
DECLARE @MySQL nVARCHAR(1050)
SET @MyDB = N'Master'
PRINT @MySql
EXEC @MySql
April 26, 2004 at 8:50 pm
Sorry for the bad formatting.. But it does what it is intended to ..
---------------------------------
We sum up the qty for Code 'S' as table D.
We also make a running summary...
April 26, 2004 at 8:43 pm
I had the same problem, and one of the users at this site pointed to a targetserverrole for viewing the jobs. All members of that role would be able to...
April 26, 2004 at 4:41 pm
Did you import using the DTS import/Export wizard? If so then you should be able to double click on the DTS package step name. I know that whole bunch of...
April 26, 2004 at 4:37 pm
I agree that SQL Server software cannot be the bottleneck. We have other server with low end IBM Fastt with 40 * 17GB drives in two raid 5 volumes, (each...
April 23, 2004 at 4:04 pm
I have no answer to the central question. But, in this case would n't it be better to make the clustered index on the ID and DeptID? The question of...
April 23, 2004 at 3:40 pm
Thanks to all those replied for your valuable input. Here is some
additional info on this system configuration:
I am using the /3GB switch only since I have 3.5 GB RAM and...
April 21, 2004 at 5:16 pm
When the outer transaction is rolled back does not it roll back all modifications, irrespective of any commits by the inner transactions? It makes no difference whether you have transactions...
April 15, 2004 at 8:15 am
Is the SQL CD in the server (primary node) or are you mapping to a network? Mapping to a network CD caused those errors for me in the past.
April 14, 2004 at 10:13 am
Look into setting up SQLAgentCmdExec Proxy account. This account will enable non-sysadmins to own jobs that execute OS commands (including xp_cmdshell). In the SQL EM -> Select the SQL Server...
April 14, 2004 at 9:54 am
Viewing 15 posts - 31 through 45 (of 92 total)