Forum Replies Created

Viewing 15 posts - 1,861 through 1,875 (of 2,897 total)

  • RE: Upgrading DTS packages to SSIS packages

    When we migrated from 2000 to 2005, we left the DTS packages as DTS instead of migrating them to SSIS. It seemed like too much work at the time, since...

  • RE: Duplicate

    What are you trying to accomplish ?

  • RE: 2005 Unused indexes v2

    Since the script is based on sys.dm_db_index_usage_stats, it only returns unused indexes that exist in sys.dm_db_index_usage_stats. Other unused indexes can be found by a different query with "WHERE NOT EXISTS...

  • RE: .mdf question

    Mani Singh (6/24/2009)


    paul is correct, i completely forgot about that.. i should stop thinking about my girlfriends all the time. 😀

    How many do you have ? (To have...

  • RE: Shrinking Log Files

    After you set back to Full Recovery, you need to take a full backup because you have broken the log chain.

  • RE: database backup

    Full backup just once a week ? If it's production, you could take DIFF backups during the week so that you don't have huge numbers of transaction logs to...

  • RE: Shrink the Production Database

    You CAN shrink it. Doesn't mean you SHOULD shrink it. Shrinking causes fragmentation.

    Leave it alone and as your database grows again the space is already allocated, so you don't lose...

  • RE: Track sql code on servers

    Sorry for the newbie trace question...

    Looks like your Stored Proc "sp_AddMyTrace" starts the trace, but how do you know the traceid to stop it ?

    What do you consider long duration...

  • RE: TempDB mdf file has grown to 11GB

    If you search "shrink tempdb" you will find some good threads on this topic.

  • RE: T-SQL to generate create table script?

    I think the original version of SQL 2005 did not let you script one file per table, but everyone should be on at least SP2 by now.

    Is there a way...

  • RE: Stored Procedure Code to "Up To Date"

    gmartin (6/11/2009)


    Cool. I only want it for Selects.

    So, last question. What would be a good way to set it back to default?

    Set Isolation Level Read Uncommitted

    begin tran

    ...

  • RE: How to return the Drives assigned to the SQL instance.

    This will dump all the MDF & LDF file drive letters to a table, then you can select distinct. Probably a better way though

    CREATE TABLE dbo.DBFileLocations

    (

    DBName nvarchar(50) NULL,

    Physical_Name nvarchar(260) NULL,

    Drive_Letter...

  • RE: SQL Monitoring

    Thanks for the info. I should have read the earlier posts a little more closely.

  • RE: SQL Monitoring

    I don't understand the distinction between profiler & server-side trace. If I go into profiler and script out the trace from the GUI, it gives me the same script that...

  • RE: How can we retrieve the deleted data from

    Lumigent Log Explorer is another product. Not sure if it would help in this case.

Viewing 15 posts - 1,861 through 1,875 (of 2,897 total)