Forum Replies Created

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

  • RE: Large LDF Despite Frequent Backups

    That's where a tool like Idera's SQL Diagnostic manager comes in handy, as you can go back in time and see things like active sessions running and what command it...

  • RE: Ways to backup restore Very Large Database (VLDB)

    Using a 3rd party tool like LiteSpeed is probably the answer for you.

    We have a 1.3TB DB that used to take about 2.5-3 hours using the native backup. With LiteSpeed...

  • RE: Evaluation Copy?

    Steve Jones - Editor (9/3/2010)


    IF it's eval edition, you can get info here: http://mangalpardeshi.blogspot.com/2009/05/expiration-date-of-sql-server.html

    If you want to query each server, I'd think that eval edition had a note in the...

  • RE: Evaluation Copy?

    Michael Valentine Jones (9/1/2010)


    select @@version

    That will only provide you with the Version/Edition of the running SQL instance. As of SQL 2005 the licensing info is no longer stored anywhere as...

  • RE: HAVING without GROUP BY

    Again a great question Hugo! Really makes you think (more than) twice about what to answer..... something new learned...again 🙂

  • RE: compatibility level of reportServer & reportserverTempdb changing to 100 every day at same time

    Dave Klug (8/20/2010)


    Out of curiosity, why would you want to run SSRS with a compatibility level of 90 as these databases are internal only.

    OP wrote "After the upgrade, we...

  • RE: Query Duplicates

    The problem here is that you are grouping by "CONID, Type,LID, CID, ContactCode, Date, EmpID", so only repetitions of same data for all those rows would "add" to the count...

  • RE: License question on the bundled Visual Studio Premier Partner Edition.

    Jonathan Kehayias (8/17/2010)


    ...You can install it just like you can install any of the client tools on end user workstations to connect to SQL Server.

    ... meaning you need only to...

  • RE: Calculating the Size of a Multi File Database Backup

    If you used the backup with multiple files, you would use a command like this to restore from multiple files:

    RESTORE DATABASE

    [DatabaseName]

    FROM

    DISK = N'Path_to_file_1.bak',

    DISK =...

  • RE: Round up or down II

    Hugo, nice question and very nice job on explaining it!

  • RE: Basic

    Lynn Pettis (8/6/2010)


    Richard M. (8/6/2010)


    I always chuckle when Wikipedia is cited as a reference. Wkipedia, although a nice place to look up stuff (you basically find anything you are looking...

  • RE: Basic

    I always chuckle when Wikipedia is cited as a reference. Wkipedia, although a nice place to look up stuff (you basically find anything you are looking for), is not always...

  • RE: AWE

    sudhakara (7/28/2010)


    jezza101 (7/28/2010)


    sudhakara (7/28/2010)


    But i dont know why only 4 GB can able to access even if i have 6 GB of RAM in my system.

    You might find the answer...

  • RE: Disable All Triggers

    Good question and use of the undocumented sp_MSforeachdb.

    Now, I have a remark here, the question stated "...disable all triggers in a database".

    As Hrvoje noted above, Database scoped triggers as well...

  • RE: PRINT vagaries

    Great question.... something new learned 🙂

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