Forum Replies Created

Viewing 15 posts - 226 through 240 (of 283 total)

  • RE: Disable Job

    You could just write a script to update the msdb.dbo.sysjobs table (enabled column) and set it for each job you want disabled when this s.n.a.f.u occurs.

     



    A.J.
    DBA with an attitude

  • RE: SQL Server Debugging Problem

    I wasn't aware that you were connecting as sysadmin.  sa has permissions already (obviously).  You may want to review the link in the previous post for further suggestions.



    A.J.
    DBA with an attitude

  • RE: SQL Server Debugging Problem

    In the master db on the server.



    A.J.
    DBA with an attitude

  • RE: SQL Server Debugging Problem

    Grant permissions to the sp_sdidebug stored procedure.

     

    http://msdn.microsoft.com/library/?url=/library/en-us/trblsql/tr_servtools_5cfm.asp

     

     



    A.J.
    DBA with an attitude

  • RE: Query taking too long

    What's the fragmentation of the indexes on these tables look like?  Run DBCC SHOWCONTIG if the scan density is < 80% I would either run DBCC DBREINDEX or DBCC INDEXDEFRAG...



    A.J.
    DBA with an attitude

  • RE: Query taking too long

    How many rows does this query return?



    A.J.
    DBA with an attitude

  • RE: SqlServer uses 50-80% of CPU

    Have you tried running a profiler trace to determine the batches / procedures that are utilizing the most CPU time?  This may give you a starting point of troubleshooting to...



    A.J.
    DBA with an attitude

  • RE: Updating a Cursor in Memory

    Why not just change your statement

     SELECT * FROM [AnyTable] where IDC = 878

    to

     SELECT column1, Column2 FROM [AnyTable] where IDC = 878

     

    And, dude - don't used cursors they suck for performance.



    A.J.
    DBA with an attitude

  • RE: Interviews Part 2

    That's pretty good.  Then give then eleven questions and tell them to rank themselve 1 - 100   Haha  ...



    A.J.
    DBA with an attitude

  • RE: Interviews Part 2

    What a joke.  People who can't handle brutal honest feedback are generally suckers trying to hide their lack of intellgence.  Being (PC) Politically Correct is for the chumps.  I applaud...



    A.J.
    DBA with an attitude

  • RE: Vacation!!

    A Man without a woman is just not being suckered into paying her bills, listening to her bull shit lies, and that man will be happier without her bitch-ass anyhow.



    A.J.
    DBA with an attitude

  • RE: Vacation!!

    Don't you guys (and evil women) have jobs? 



    A.J.
    DBA with an attitude

  • RE: Stupid Newbie Question about SQL Query Anylizer

    SELECT @Output will return a recordset

    You want to do everything that Remi said to do but instead:

    Print @Output



    A.J.
    DBA with an attitude

  • RE: Help with a sql query

    You can only have a "trusted connection" by not using OPENROWSET - instead you'd have to create a linked server.

     

    To check/edit the service account just go to properties in Enterprise...



    A.J.
    DBA with an attitude

  • RE: Help with a sql query

    You can only have a "trusted connection" by not using OPENROWSET - instead you'd have to create a linked server.

     

    To check/edit the service account just go to properties in Enterprise...



    A.J.
    DBA with an attitude

Viewing 15 posts - 226 through 240 (of 283 total)