Forum Replies Created

Viewing 15 posts - 811 through 825 (of 965 total)

  • RE: Page Splits

    There is no hard and fast answer to whether it is problemattic or not. It really depends a lot on what the impact of the page splitting is. ...

  • RE: Service Pack Detection

    Client side, in Management Studio you can use Help --> About which will output:

    Microsoft SQL Server Management Studio9.00.3042.00

    Microsoft Analysis Services Client Tools2005.090.3042.00

    Microsoft Data Access Components (MDAC)2000.085.1132.00 (xpsp.080413-0852)

    Microsoft MSXML2.6 3.0 4.0...

  • RE: Service Pack Detection

    You don't have to look at the DLL's to know whether a patch has been applied. The build number from SELECT @@Version can be used to figure out what...

  • RE: cannot start sql server agent...

    The Service Account for the SQL Agent has to be a sysadmin in the SQL Server for it to startup. The Error 18452 being thrown is coming from the...

  • RE: Visual Basic code to write the last time a Table was updated in a DB

    It sounds to me like you added the column incorrectly to the table, as a computed column with the value of getdate() which is non-deterministic. It should have been...

  • RE: Clr Trigger for Insert

    Jeff Moden (10/31/2008)


    Do you mean that you changed it to T-SQL?

    If you did and you still have problems, can you post your TSQL Trigger code. If you didn't, can...

  • RE: Clr Trigger for Insert

    I don't see anywhere in your code that you need CLR to do this. A Simple TSQL Trigger would do this much better.

  • RE: backup with backup exec 12.5 cannot be performed on master DB

    Not really. We had some headaches from time to time that we would also have experienced in a physical implementation when our SAN got overloaded. Adding a 4GB...

  • RE: backup with backup exec 12.5 cannot be performed on master DB

    This is a common problem I face when we add a new SQL Server to our environment. The Netbackup Admin sets the policy to work for all databases because...

  • RE: backup with backup exec 12.5 cannot be performed on master DB

    This is saying that you attempted a Log backup on the master database which is not supported by any tool including SQL native backup. You can only take a...

  • RE: Virtual Memory Page File Size

    The 1.5 times the phyiscal memory size is based on whether you want the server to be able to do kernel mode or full memory dumps. This is usually...

  • RE: How to turn on DDL Auditing?

    You would still need to create a DDL Trigger for the actions you want to audit, and then you can use RAISERROR and specify the WITH LOG option to send...

  • RE: How to turn on DDL Auditing?

    Define what you mean by DDL Auditing? You can easily monitor most DDL commands with DDL Triggers in SQL Server 2005. There are plenty of articles out there...

  • RE: using CLR assembly

    Jeff Moden (10/29/2008)


    Gosh... sounds like a little "push" and you'd have a full blown app. Why not write it as an app?

    Jeff,

    As resistent as you are to CLR inside...

  • RE: Using the Blocked Process Report in SQL Server 2005/2008

    The blocked process monitor is actually piggy backing on the deadlock monitor background thread, which is always running, so impact is very minimal. This is covered in the BOL...

Viewing 15 posts - 811 through 825 (of 965 total)