Forum Replies Created

Viewing 15 posts - 61 through 75 (of 360 total)

  • RE: TSQL to check database backup status

    capnhector (11/7/2012)


    if your just looking for a report of backups you can query msdb.dbo.backupset which contains allot of information

    select top 10 b.database_name, b.backup_start_date, b.backup_finish_date

    from msdb.dbo.backupset b

    with a join...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: TSQL to check database backup status

    Thanks for the script

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Suddenly receiving Transport error trying to start jobs

    Is the job enabled? Does the job use any linked servers? Please post the results of view history of this job.

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Missing Index

    Per your example the order does not matter. What is the size of the index and the table? What is the number of reads over writes for that index? Before...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Need help with trigger

    Cool...Thanks so much lowell...I was working on it parallely and came up with almost a same script..please find mine below:..Thanks a bunch again

    DECLARE @TableName VARCHAR(255)

    DECLARE @PKColumnName VARCHAR(255)

    DECLARE @sql NVARCHAR(4000)

    DECLARE TableCursor...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Need help with trigger

    Thanks for your help Lowell. I have too many tables and I want to put it in a cursor. But I am stuck at the inner join condition. Here is...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Getting login failed error when trying to run sql agent jobs after failback or failover

    Sapen (9/26/2012)


    I verified my local policy settings and found out that "Enable computer and user accounts to be trusted for delegation" has none added to this policy. I just...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Getting login failed error when trying to run sql agent jobs after failback or failover

    I verified my local policy settings and found out that "Enable computer and user accounts to be trusted for delegation" has none added to this policy. I just added...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Getting login failed error when trying to run sql agent jobs after failback or failover

    Experts I need your valuable inputs. Thanks Again.

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: sql service restarted unexpectedly

    Zeal-DBA (9/26/2012)


    how do we check if it is enabled or not?

    go to control panel--> windows updates-->check if you have enabled it

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: sql service restarted unexpectedly

    Ensure that you have no automatic updates scheduled on your servers.

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Linked Server Issue

    The Linked server is between sql servers.

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: Using GUIDs as primary keys/clustered indexes

    I will also be adding few maintenance jobs on this database that will actually purge data from this database on a daily basis and we are using Entity framework scripts...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: can this code be in a stored proc?

    Thanks For the reply Gail. I will test it before I move it to production.

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

  • RE: can this code be in a stored proc?

    Thanks for the reply Gail. . Due to non existent data in our test environments, we dont have a valid environment to use this SP. Hence I will have to...

    “If your actions inspire others to dream more, learn more, do more and become more, you are a leader.” -- John Quincy Adams

Viewing 15 posts - 61 through 75 (of 360 total)