Forum Replies Created

Viewing 15 posts - 16 through 30 (of 49 total)

  • RE: SQL 2005 Installation

    The Visual Studio components that are installed with SQL Server do not require any additional licensing outside of the SQL Server licensing itself.

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: New to SQL

    If you are looking for something that is free you can download SQL Server Express Edition.

    http://www.microsoft.com/express/Database/

    Although if you are really wanting to learn SQL Server I would suggest purchasing a...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: How to Get the First or Last X Rows without Group By

    Jack beat me to it. 🙂

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: How to Get the First or Last X Rows without Group By

    You will want to use the OVER clause and PARTITION BY argument with the ROWNUMBER() function that Jack suggested to achieve your desired outcome. Check out this MSDN link...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: Restricting login privileges?

    That is definitely correct, the guest account would have to be granted permissions in the second database for that to work. I suppose you could use a logon trigger...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: Restricting login privileges?

    Have you thought about using an application role to facilitate this?

    http://msdn.microsoft.com/en-us/library/ms190998.aspx

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: On Error () Logging by Using Event Handlers

    Thanks for the details. Greatly appreciated!

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: On Error () Logging by Using Event Handlers

    I have implemented something very similar to this however; instead of creating the PackageLogID as a user variable I am just using the system variable "ExecutionInstanceGUID". I am curious...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: change to bit column

    In addition to what Greg mentioned above you can also set the column to not allow nulls in the designer. I am not sure it is completely necessary but...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: Transaction Log Truncate Problem

    GilaMonster (5/5/2009)


    How full is the transaction log? If there's 90GB of log data in there, it won't shrink below that.

    Use DBCC SQLPERF(LogSpace) to see what percentage of the log is...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: Transaction Log Truncate Problem

    Thanks Adam, I'm not trying to be pushy I have just had good luck with that procedure. Hope it works! Let me know how it goes.

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: Transaction Log Truncate Problem

    Hi Adam,

    Have you actually tried this procedure? I have yet to run into a situation where this would not force shrink the log. I have encountered many scenarios...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: Transaction Log Truncate Problem

    Use the following script to create the stored procedure "sp_forcelogtoshrink".

    You can speicify the new log size by setting the @NewSize value in the script before createing the procedure

    [Code]

    SET ANSI_NULLS ON

    GO

    SET...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: SQL Monitoring Tool

    I am currently in the market for something similar and as far as one tool that can do it all I agree that will be hard to find.  From the...

    Regards,

    Jason P. Burnett
    Senior DBA

  • RE: Greater than 2GB

    If you want it to be support by Microsoft in a production environment you will need to be using either Windows 2000 Advanced Server or Windows 2003 Enterprise Edition.  See...

    Regards,

    Jason P. Burnett
    Senior DBA

Viewing 15 posts - 16 through 30 (of 49 total)