Viewing 15 posts - 5,866 through 5,880 (of 6,678 total)
Check the ARITHABORT setting on each server/database. I bet on the one that is failing - this setting is ON.
December 10, 2008 at 11:30 am
SQL Server 2000 Standard Edition can only use a maximum of 2GB of memory (or 3GB if you enable the /3GB switch in the boot.ini).
No matter what - that is...
December 10, 2008 at 10:50 am
pbreitenbeck (12/10/2008)
/* original code */
update MachineAudit set leaseNumber = b.leaseNumber
from MachineAudit a,
(select a.machineID, b.leaseNumber from MachineName a, LeaseInfoImport b
where a.machineName = b.computerName) b
where a.machineID = b.machineID
What this is is an...
December 10, 2008 at 10:13 am
After each operation, you can issue the statement CHECKPOINT. You can review BOL at:
Basically, when you issue a checkpoint - all dirty pages are written to disk and the...
December 10, 2008 at 8:44 am
Jeff Moden (12/9/2008)
Jeffrey Williams (12/7/2008)
Instead of trying to fiddle with IGNORE_DUP_KEYS on the index, ...No "fiddling" required... it's set it and forget it. 😉
Well, that is true - but to...
December 9, 2008 at 11:11 pm
That is perfectly fine - because every one of us has been there before. :w00t:
December 9, 2008 at 5:37 pm
You can start with these tables:
msdb.dbo.sysjobs
msdb.dbo.sysjobschedules
msdb.dbo.sysjobservers
msdb.dbo.sysjobsteps
msdb.dbo.sysjobstepslogs
December 9, 2008 at 3:09 pm
You can use the column 'is_system_named' in the tables:
sys.default_constraints
sys.foreign_keys
sys.key_constraints
sys.check_constraints
Not sure where you can find the same thing for indexes that are not constraints. I do know that you can...
December 9, 2008 at 2:50 pm
Can't say that I have seen that kind of issue before. I know this is a stupid question, but have you verified that you are connected to the right...
December 9, 2008 at 1:36 pm
Phil Auer (12/9/2008)
I have actually hand-type simple backup commands for different paths and different databases and none of the scripts executed properly.
I'm sorry for being a bit dense - but,...
December 9, 2008 at 12:54 pm
Grant Fritchey (12/9/2008)
December 9, 2008 at 12:42 pm
ISNULL (or COALESCE) is only required if the columns allow nulls. If the columns do not allow nulls, then you don't need it. For a column that contains...
December 9, 2008 at 12:37 pm
Alan Vogan (12/9/2008)
I'm running a similar script and yes, it is WAY better to write your own optimizations. How do you handle the exception when the index contains one...
December 9, 2008 at 12:28 pm
Jerry Hung (12/9/2008)
Select db_name()
,object_name(s.object_id) As ObjectName
--,object_schema_name(s.object_id)...
December 9, 2008 at 12:23 pm
Viewing 15 posts - 5,866 through 5,880 (of 6,678 total)