Viewing 15 posts - 736 through 750 (of 816 total)
how to find out who disabled sql agent jobs?
what do you mean by sqlagent jobs?
Is it about any perticular job or complete sql agent?
Whatever the case check error logs...
August 13, 2010 at 11:10 am
"you must resolve any issues with the previous operation that failed"
that is the only assumption I have from this error.
August 13, 2010 at 11:03 am
it seems like there was some installation in past which required server reboot and was not done.
I think reboot will resolve this problem.
August 13, 2010 at 10:40 am
lot of articles available on BOL for upgrade.
August 13, 2010 at 10:35 am
Also if you expecting the integer value to be return then why you creating your @..... as char type?
August 13, 2010 at 10:29 am
if its numeric then what do you mean by
Else 'July.F1007'.
not sure but could be the reason.
August 13, 2010 at 10:28 am
you can justify by giving the data like :-
1) how important your database performance and role fo tempdb in this.
2) performance comparison by putting the temdb log on another drive...
August 13, 2010 at 8:48 am
so whats stopping you to do this....
if account you want in sql then create sql account else windows account and give required permission to that specific account
August 13, 2010 at 8:40 am
FROM Sales where Sales.SERVICE = SERVICE.SERVICE or sales.service is null
OR if it different table then
FROM Sales where Sales.SERVICE = SERVICE.SERVICE or SERVICE.service is null
August 12, 2010 at 11:03 am
no problem....just bit more explanation with code what I was saying earlier...
in bat file
for /f %%G in (serverlist.txt) do sqlcmd -S %%G -E -i serverversions.sql
or if the...
August 12, 2010 at 10:56 am
my personal view.....
first check your database that which are the tables consuming most of the space. google it, you will find the query how to find the tables sort by...
August 12, 2010 at 10:17 am
try this:-
select convert(char(8),getdate(),102)
August 12, 2010 at 10:06 am
you can delete all the data by comparing to temp table and then as temptable have unique record you can import it back to original table
something like
select * from table...
August 12, 2010 at 10:03 am
once you get the serverlist in text file then you can use that to check server version and other details by running query which you will run on any specific...
August 12, 2010 at 9:28 am
i am not talking about replication monitor, i said activity monitor where you can see if any process is still running for replication
August 12, 2010 at 9:18 am
Viewing 15 posts - 736 through 750 (of 816 total)