Viewing 15 posts - 1,996 through 2,010 (of 2,463 total)
You might try the '-q' parameter so that quoted identifiers are used.
March 29, 2010 at 5:04 am
massimo.valtolina (3/28/2010)
the strange thing is that in another db, virtually identical, i don't have this problem.
Data Volume can be different or indexes/statistics might be out of dated. can you...
March 29, 2010 at 4:35 am
Sudarsan Srinivasan (3/25/2010)
ROLLBACK in CATCH block...
What else you have in CATCH box ? means any error message or error code syntax?
Bcoz that will help you/us to get the...
March 29, 2010 at 4:27 am
Sudarsan Srinivasan (3/25/2010)
ROLLBACK in CATCH block...
March 29, 2010 at 4:25 am
EXEC sp_cpu_proc
IF (DATEPART(mi, GETDATE()) = '00')
EXEC sp_memory_proc
Add above code in job and schedule it for every 1 min.For CPU,it will work for every new hour( ex: 1 AM, 2 AM,...
March 29, 2010 at 3:42 am
Mani-584606 (3/29/2010)
How to know whether tempDB is heavily used by the application or not? where to check this?
You can refer this link
Sys.dm_exec_requests DMVs to find the currently active requests, their...
March 29, 2010 at 3:33 am
Did you have SP1 patch recently?
Whats values you are getting with it?
select value, value_in_use from sys.configurations where name = 'Agent XPs'
March 29, 2010 at 2:50 am
Why it is treating 0 and '' (Blank) same ? in select nullif( 0, '')
March 29, 2010 at 1:51 am
Uncle Moki (3/26/2010)
March 29, 2010 at 12:19 am
peterjonk (3/26/2010)
select max(id) from tbl_test
first of all this query never go for index seek as it doesnt contain any where clause
and second, if this table has only one...
March 26, 2010 at 8:23 am
I think you should have separate account to run jobs.
March 26, 2010 at 8:02 am
Your query is not showing any result as "TEST" login is not db_owner (as your query will only work for db_owner)
and you can use use youydb
go
SELECT P.name
FROM sys.database_principals AS...
March 26, 2010 at 7:44 am
Viewing 15 posts - 1,996 through 2,010 (of 2,463 total)