Forum Replies Created

Viewing 15 posts - 691 through 705 (of 2,436 total)

  • RE: Deadlock - Killing the correct process ID

    If you want to track your deadlock information add the following to your SQL Server startup parameters:

    -T1204

    -T3605

    This way basic deadlock information is logged to the SQl Server errorlog.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Wierd Backup Issue with SQL Server 2000

    What credentials is the SQL Agent using ?

    What credentials is the SQL Job using ?

    What credentials is the EM using ?

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Use variable as alias

    Search this site for "DYNAMIC SQL".

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Managing Permissions

    It is an unfortunate situation. Vendor software coded poorly - they did not understand security, nor did they care. You are pretty much stuck with what folks have already stated....

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Data Cleansing

    a relevant google result:

    http://en.wikipedia.org/wiki/Data_cleansing

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Data Cleansing

    I prefer Comet - it is chlorinated.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: User Log in history

    "see database.ldf file"

    HUH ?!?!?!?

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: sysdatabases status 536 instead of 512

    Another way to skin the cat. This onea bit more portable between versions:

     select name from sysdatabases

     where name not in ('master','model','msdb','tempdb','pubs','Northwind')

     and DATABASEPROPERTYEX(name,'status')='ONLINE'

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: tempdb referenced 2 times in sysaltfiles

    no problemo senore ...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: tempdb referenced 2 times in sysaltfiles

    There should not be any issues nire a restart. However, backup the master database first !!!

    Here is the general outline you'll need:

    exec sp-configure 'allow updates',1

    reconfigure with override

    begin tran

    select what you...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: tempdb referenced 2 times in sysaltfiles

    The only way to remove those stray rows is to edit the system table itself. If you are comfortable with SQL and mucking witth the system tables it is a...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: deadlock due to transactions within a single SPID

    Here is a handy reference for the system tables to start you off:

    http://www.microsoft.com/sql/prodinfo/previousversions/systables.mspx

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: SQL Server CPU utilization

    Is this a single or multiple CPU server ? If it is a single then upgrade immediately. If it has 2 CPUs see if you can go to 4 CPUs....

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: slow down of server

    Great advice !!!

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Surface Computing

    I am one of those clean screen folks but I just do not have the problem more than once with anybody. I just simply tell them not to. if they...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

Viewing 15 posts - 691 through 705 (of 2,436 total)