Forum Replies Created

Viewing 15 posts - 1 through 15 (of 26 total)

  • RE: Monitoring on a Budget

    Hi,

    One more thing to watch out. In the monitoringserver.sql, add in the use tempdb in the beginning of the script.

    use tempdb -- add in this

    go ...

  • RE: Monitoring on a Budget

    Bert Carles (11/20/2007)


    Perhaps that restriction pertains to a #TEMP table? All I know is the DTS works as coded.

    I finally figure it out.

    Somehow, the DTS Transform task won’t auto...

  • RE: Monitoring on a Budget

    Bert Carles (11/20/2007)


    Perhaps that restriction pertains to a #TEMP table? All I know is the DTS works as coded.

    I still getting error invalid object name 'tempdb.dbo.DayDBStat' at the same...

  • RE: Monitoring on a Budget

    I mean at source tab in the Transform Data Task for DB Stats monitoring with the TSQL:

    select * from tempdb.dbo.DayDBStat

  • RE: Monitoring on a Budget

    I thought you can't query temp table as source in Transform Data task as stated here

    When using temporary tables in the Transform Data task, the Data Driven Query task, or...

  • RE: Confess over DTS packages and DTS scheduled jobs

    Background:

    I have a PROD server having database replication using a third party product from EMC called Replistor (i think is was a product by Legato previously). It is replicating the...

  • RE: Confess over DTS packages and DTS scheduled jobs

    Greg Charles (10/17/2007)


    Garrick,

    1) If a connection in the package uses Windows Authentication, the connection will be made with the security credentials of the Windows account that runs SQL Server Agent,...

  • RE: Backup job can''''t start because previous backup is still running

    sp_lock showed no lock held by the non-stop process spid. But the backup process just won't go away even with kill command issued.

    somehow, i guess it has to do with...

  • RE: Backup job can''''t start because previous backup is still running

    It is backing up 50 databases in that instance. sp_who2 show disk and cpu column figure is static. will check the sp_lock.

    The backup job log specified under reporting tab in...

  • RE: Index Rebuild - How much and How Long?

    The db i mentioned is 90GB. The biggest table is 60GB and clustered index rebuild on this table alone take 4+ hours.

    dbcc dbreindex in SQL2000 need a DB to be...

  • RE: Index Rebuild - How much and How Long?

    The fillfactor remain the same for each DBCC DBREINDEX run. We didn’t explicitly specify the fill factor in DBCC DBREINDEX command as it will get the same value every run...

  • RE: Index Rebuild - How much and How Long?

    Hi,

    I did a index rebuild (DBCC DBREINDEX) last week. The last index rebuild was done a month ago. I realised that the time taken to halfed for a particular index....

  • RE: Index Rebuild - How much and How Long?

    Hi,

    Thanks for the detailed insight.

    First, I wish the WITH STAT for index rebuild will be there in next release of SQL Server, SQL2008/9? I guess SQL2005 still inherit the something...

  • RE: Audit SP for logins in sysadmin role

    Hi,

    Maybe I didn't put the question clear enough. I will explain here again:

    I need to create a wrapping stored procedure around profiler system SPs such as sp_trace_setfilter and etc. I am...

  • RE: Audit SP for logins in sysadmin role

    Jonrneyman,

    Thanks your for reply.

    Yes. sp_helpsrvrolemember will list all the members (logins and NT groups) of sysadmin role.

    But, for my case i have different NT domian groups for different group of people...

Viewing 15 posts - 1 through 15 (of 26 total)