Forum Replies Created

Viewing 15 posts - 451 through 465 (of 1,654 total)

  • RE: Transacation Log too big

    shri_sastry (2/9/2009)


    Hello All,

    I am running rebuild indexes as a nightly job every night. I see that the transaction log has grown to 140G(the database...

    [font="Verdana"]Markus Bohse[/font]

  • RE: IO thawed

    These are message from a third-party backup tool which tries to take a snapshot of the database.

    [font="Verdana"]Markus Bohse[/font]

  • RE: Monitor security changes

    Mike Levan (2/8/2009)


    I see trace files only for past 2 days in the folder C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG and i havea total of 4 files for 2 days each of...

    [font="Verdana"]Markus Bohse[/font]

  • RE: How long the SQLServer Agent Job is running ?

    SQL 2005 has implemented a new table sysjobactivity. There you find info about all running SQL Agent jobs.

    [font="Verdana"]Markus Bohse[/font]

  • RE: Monitor security changes

    Mike Levan (2/5/2009)


    Markus

    Is it a free tool DDL Audit Sample Applications (1.0.0.0)?

    How safe it is to run on production systems and how much does it cost?

    Yes it's free as far...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Monitor security changes

    You could use DDL trigers which capture any CREATE or ALTER LOGIN/USER command and log the results into an audit table.

    If you have a lot of 2005 servers it might...

    [font="Verdana"]Markus Bohse[/font]

  • RE: some problem after install SP3

    I'm not sure, but it looks like the passive node has not been updated. You might have to install CU1 on the passive node manually.

    I have not installed that update...

    [font="Verdana"]Markus Bohse[/font]

  • RE: SCOM 2007 SP1 and SQL 2008

    Marios Philippopoulos (2/3/2009)


    Can System Center Operations Manager 2007 SP1 monitor SQL 2008 instances?

    Yes, it can. There is a management pack for SQL Server which supports SQQL 2000,2005 and 2008.

    http://technet.microsoft.com/en-us/opsmgr/cc539535.aspx

    [font="Verdana"]Markus Bohse[/font]

  • RE: Not able to Concatenate lastwaittype column in sysprocesses

    Just did some more testing and I noticed that then you run the query against a SQL 2000 server, then the second part is not visible in the grid, but...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Not able to Concatenate lastwaittype column in sysprocesses

    Sakthivel Chidambaram (2/4/2009)


    May be if you try it practically you can understand what I mean....

    I've tested it on my system and it works.

    But I have noticed that when you...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Not able to Concatenate lastwaittype column in sysprocesses

    Your concatenation is actually working, but because you don't trim the trailing blanks you probably don't see the second part. Try using this instead:

    SELECT RTRIM(cast(lastwaittype as varchar(100))) + '...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Installation of SQL server 2000 on Vista

    abdullah.olaniyan (2/4/2009)


    Thanks for the reply but the instance is not useful without the database right?;)

    Do you know what possible purpose it serves then?

    Because I don't know for which application the...

    [font="Verdana"]Markus Bohse[/font]

  • RE: How : write a stored procedure to include CREATE LOGIN ?

    One more comment. I think you should change the datatype of your input paramters to varchar. Using CHAR(10) for the password will result in trailing blanks.

    [font="Verdana"]Markus Bohse[/font]

  • RE: How : write a stored procedure to include CREATE LOGIN ?

    That's what happens when you just write some quick code without testing it. THe procedure fails because the password parameter adds the string without quotes. Change it to this:

    ALTER PROCEDURE...

    [font="Verdana"]Markus Bohse[/font]

  • RE: SQL Memory issues

    In that case you can try the /3gb switch and raise the max memory to 3 Gb.

    [font="Verdana"]Markus Bohse[/font]

Viewing 15 posts - 451 through 465 (of 1,654 total)