Forum Replies Created

Viewing 15 posts - 61 through 75 (of 100 total)

  • RE: Inactivate a trigger in sql2000

    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...

  • RE: not exists

    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...

  • RE: An interesting problem: SQL 2000 ENT

    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...

  • RE: data files allocation for a large db

    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...

  • RE: how to inactivate trigger in sql2000?

    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 '...

  • RE: Inactivate a trigger in sql2000

    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 '...

  • RE: sql memory configuration on server with 4G momory

    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...

  • RE: Triggers?

    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...

  • RE: Triggers?

    Let me know how it goes...

  • RE: Standby Server & AWE

    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...

  • RE: Setting up SQL Server & Server Agent

    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...

  • RE: DB and Trans dump Time Conflict?

    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...

  • RE: Triggers?

    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...

  • RE: DB and Trans dump Time Conflict?

    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...

  • RE: isql

    Batch file could look like this:

    start isql -S servername -d databasename -U Username -P password -Q "create index index1 on table (column)" -o Index1.log

    start isql -S servername -d databasename...

Viewing 15 posts - 61 through 75 (of 100 total)