Viewing 15 posts - 451 through 465 (of 1,655 total)
shri_sastry (2/9/2009)
I am running rebuild indexes as a nightly job every night. I see that the transaction log has grown to 140G(the database...
February 9, 2009 at 6:59 am
These are message from a third-party backup tool which tries to take a snapshot of the database.
February 9, 2009 at 6:38 am
Mike Levan (2/8/2009)
February 9, 2009 at 3:40 am
SQL 2005 has implemented a new table sysjobactivity. There you find info about all running SQL Agent jobs.
February 6, 2009 at 7:15 am
Mike Levan (2/5/2009)
MarkusIs 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...
February 6, 2009 at 12:31 am
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...
February 5, 2009 at 2:17 am
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...
February 4, 2009 at 11:50 am
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.
February 4, 2009 at 6:58 am
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...
February 4, 2009 at 6:27 am
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...
February 4, 2009 at 6:11 am
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))) + '...
February 4, 2009 at 5:46 am
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...
February 4, 2009 at 4:46 am
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.
February 4, 2009 at 4:12 am
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...
February 4, 2009 at 3:57 am
In that case you can try the /3gb switch and raise the max memory to 3 Gb.
February 4, 2009 at 2:51 am
Viewing 15 posts - 451 through 465 (of 1,655 total)