Viewing 15 posts - 661 through 675 (of 1,065 total)
I presume your memory allocation is set to "Dynamic".
If the box is dedicated to SQL Server, then don't worry about it.
With memory allocation set to "Dynamic", if the OS...
October 23, 2008 at 8:52 am
A primary key is nothing to do with performance, it is about uniquely identifying a row in your table.
If you don't create a primary key on your regions table, what...
October 9, 2008 at 7:08 am
Why do you want to rewrite it?
Is it slow?
Doesn't it work?
October 9, 2008 at 4:52 am
You need to add the OUTPUT keyword to the @out_ClientId parameter when you are calling the stored procedure.
October 9, 2008 at 3:09 am
Device type 7 is a virtual device.
Are you doing other backups (as well as via a maintenance plan) using 3rd party tools e.g. Veritas Backup Exec?
October 2, 2008 at 2:50 am
IF EXISTS (select * from Emp) print 'exists'.
This only needs to verify that a row exists in the table, and should only do a single I/O, regardless of how many...
October 1, 2008 at 4:47 am
Data, log and backup can all reside on the same drive.
Is is wise? NO!!!
If you lose the drive, you have lost your data AND your backups
Ideally, 3 separate...
October 1, 2008 at 4:40 am
That query should work... are you using any 3rd party tools to run the backup?
October 1, 2008 at 4:26 am
A couple more thoughts...
Are you sure the trigger doesn't fire?
Just add a print statement to the top of the trigger to confirm whether or not it fires.
Does your Table B...
September 30, 2008 at 5:53 am
Do you have the server property "nested triggers" set?
Run sp_configure and see if this is set to 1.
September 30, 2008 at 4:58 am
You are not qualifying the "and not exists..." part of the query.
I presume it should be something along the lines of:-
and not exists (select * from products where product.productid...
September 30, 2008 at 3:50 am
SET ROWCOUNT 10000
DELETE FROM dbo.Table WHERE WhatEver
Just be aware that if you have any triggers on the table you are deleting from, that SET ROWCOUNT will also affect the trigger.
September 30, 2008 at 2:18 am
This should give you what you need:-
select icompanyid,name,
case when c.phonetype = 417 then c.phonenumber
else p417.phonenumber end...
September 30, 2008 at 2:00 am
I think you need to look at your view.
I've created tables and test data with your scenario, and everything works!
September 26, 2008 at 7:48 am
Viewing 15 posts - 661 through 675 (of 1,065 total)