Forum Replies Created

Viewing 15 posts - 4,906 through 4,920 (of 19,564 total)

  • RE: Multiple instances referencing same master.mdf

    When you start SQL Server, it is the data file that is locked and not the folder.

    When an instance is started, the master db is locked by the process of...

  • RE: Multiple instances referencing same master.mdf

    You don't happen to have an alias for that archive instance do you?

    In services control panel, do you have the services for both instances running?

  • RE: Big table

    Yes - many records can impact performance.

    If your primary activity is only against the most recent couple of years, then I would look to archive the data into a different...

  • RE: Convert datetime in SSIS

    I have done similar with the derived columns. That is what I would recommend.

  • RE: Multiple instances referencing same master.mdf

    the master database can only be used by one instance. Each instance would have its own master database.

  • RE: Missing index statistics - Dementia ?

    Sometimes you may continue to see that index because the query that needs it has columns using a different sort order than the index. And sometimes it is a...

  • RE: Move Primary Key to File Group?

    Lynn Pettis (3/10/2013)


    It is possible that to improve system performance, you could more your nonclustered indexes to other file groups and have this file groups on separate spindles. This...

  • RE: Backup issue through maintenance plan

    george sibbald (3/11/2013)


    m.rajesh.uk (3/10/2013)


    Hi, any one has any idea .....

    I have had posts ignored before but this is getting ridiculous.................:-)

    Did you say something ;-):-D

  • RE: Backup issue through maintenance plan

    m.rajesh.uk (3/11/2013)


    Through script it went fine. so how to solve this issue in maintenance plan.....

    Please provide the exact script you used to backup the database via script.

  • RE: Today's Random Word!

    crookj (3/11/2013)


    SQLRNNR (3/9/2013)


    john.arnott (3/8/2013)


    Revenant (3/8/2013)


    SQLRNNR (3/8/2013)


    opc.three (3/8/2013)


    JAZZ Master (3/8/2013)


    crookj (3/8/2013)


    SQLRNNR (3/7/2013)


    crookj (3/7/2013)


    Daniel Bowlin (3/7/2013)


    Help

    Support

    Truss

    Tether

    Tie

    Bolo

    Whip

    Rawhide

    Eastwood

    West Side

    Story

    TOY

  • RE: Script to calculate when a job ended.

    Welsh Corgi (3/11/2013)


    SQLRNNR (3/11/2013)


    Jeff Moden (3/11/2013)


    David Burrows (3/11/2013)


    SELECT DISTINCT j.name as job_name,

    msdb.dbo.agent_datetime(run_date, run_time) AS [run_datetime],

    DATEADD(second,DATEDIFF(second,0,msdb.dbo.agent_datetime(19000101, run_duration)),msdb.dbo.agent_datetime(run_date, run_time)) AS [run_endtime]

    FROM msdb..sysjobhistory h

    INNER JOIN msdb..sysjobs j ON h.job_id = j.job_id

    WHERE j.name...

  • RE: Script to calculate when a job ended.

    Jeff Moden (3/11/2013)


    David Burrows (3/11/2013)


    SELECT DISTINCT j.name as job_name,

    msdb.dbo.agent_datetime(run_date, run_time) AS [run_datetime],

    DATEADD(second,DATEDIFF(second,0,msdb.dbo.agent_datetime(19000101, run_duration)),msdb.dbo.agent_datetime(run_date, run_time)) AS [run_endtime]

    FROM msdb..sysjobhistory h

    INNER JOIN msdb..sysjobs j ON h.job_id = j.job_id

    WHERE j.name NOT LIKE 'Backup%'

    AND...

  • RE: SQL backup plan

    I'd convert from maintenance plan backups and use script based backups.

    But, even in the maintenance plan, you can type out the path for a UNC rather than rely on what...

  • RE: SQL backup plan

    You can take a backup to a UNC path \\server\share

  • RE: Backup issue through maintenance plan

    If you run a manual backup for that database via script to that folder location, does it work?

Viewing 15 posts - 4,906 through 4,920 (of 19,564 total)