Viewing 15 posts - 61 through 75 (of 100 total)
The 2048 bit is what SQL Server is setting behind the scenes when you disable a trigger. So the sql is checking to make sure this is not set...
June 18, 2002 at 11:17 am
Alot of times NOT EXISTS is used to check if certain schema exists in order to avoid fatal errors when running a script. There isn't really a more efficient...
June 18, 2002 at 11:07 am
This sounds a bit scary to me... I plan on upgrading to SP2 on my cluster soon.
Did you install SP2 on the primary node first?
Are there any MDAC files on...
June 18, 2002 at 11:01 am
If you have more than one Drive or Raid array that it could be split across, then it would be worth splitting up the IO by placing it onto all...
June 18, 2002 at 10:47 am
This should work for you:
ALTER TABLE table_name DISABLE TRIGGER trigger_name
This statement should print out the commands you need to run for all active triggers in the database:
select 'ALTER TABLE '...
June 18, 2002 at 10:43 am
This should work for you:
ALTER TABLE table_name DISABLE TRIGGER trigger_name
This statement should print out the commands you need to run for all active triggers in the database:
select 'ALTER TABLE '...
June 18, 2002 at 10:29 am
I believe will only be able to use AWE if you are running Windows 2000 Advanced Server and SQL 2000 Enterprise. To allow SQL Server to allocate more than...
June 18, 2002 at 10:13 am
If you are worried about disabling functionality on other parts of your server then you could handle this programatically on each trigger. This would be an example on how...
June 18, 2002 at 9:46 am
I read into this when I was setting up a similar site. If you enable AWE on a box that does not have enough RAM to support it (3GB...
June 14, 2002 at 9:15 am
It sounds like there are potentially two ways to handle the situation:
A) They need to setup the IUSR Account as a guest domain account, then you can create a...
June 13, 2002 at 10:08 am
Antares,
What I was trying to say is in a full recovery model these are not redundent. If you wanted to have redundent data, then you would have to make...
June 12, 2002 at 10:03 am
This is how I would handle this... I am assuming that you can join on the empid column here... if not you should change the last statement to join...
June 12, 2002 at 9:36 am
I agree that it shouldn't cause any issues but I disagree that it's a redundant process. Running a tranlog backup before your full backup will preserve the tranlog and...
June 11, 2002 at 4:13 pm
Viewing 15 posts - 61 through 75 (of 100 total)