Viewing 15 posts - 1,441 through 1,455 (of 1,654 total)
Unfortunately I can't see the error messages so I have to guess about the errors. What you should do is first make sure that there is a login for N800\harihan_lavanya...
[font="Verdana"]Markus Bohse[/font]
July 6, 2006 at 6:26 am
Ivan,
the fact that SQL Agent grey's out the Test button seems to be some bug in Management Studio, I have the same problem even after installing SP1.
About SQL Agent not...
[font="Verdana"]Markus Bohse[/font]
July 6, 2006 at 5:45 am
Gex,
Can you post your statement plz. It's hard to tell what's wrong without knowing your exact statement. Personally I don't have any problems using the @query parameter.
Markus
[font="Verdana"]Markus Bohse[/font]
July 6, 2006 at 5:40 am
Is it possible that your backup file contains more than one backup ? It sounds to me like one of those classical cases where you have two or more backups...
[font="Verdana"]Markus Bohse[/font]
April 12, 2006 at 3:51 am
Hi Folks,
as always as soon as you post a problem, suddenly you find the answer. The version is registered in the table sys_config, and somehow the information from this...
[font="Verdana"]Markus Bohse[/font]
April 6, 2006 at 2:00 am
Carl,
I can't check it now (no SQL2005 server at hand), but most system tables/views in 2005 are in the sys schema and you have to call them like sys.properties.
Markus
[font="Verdana"]Markus Bohse[/font]
March 31, 2006 at 8:52 am
Hi Joe,
thanks for your reply. All the jobs are running fine. The databse is in full recovery mode and transaction log backups are made every hour. The memory (4gb) is...
[font="Verdana"]Markus Bohse[/font]
March 31, 2006 at 8:27 am
Dave,
have you tried running DBCC CHECKALLOC ? In my experience errors in checkdb are most of the time related to disk errors.
Also at http://www.sqlfe.com/ you find a utility which enables...
[font="Verdana"]Markus Bohse[/font]
March 31, 2006 at 7:04 am
Santhosh,
Exec sp_helptext 'sys.fn_get_sql' will give you the code for this function, but I don't understand why you would need that.
Markus
[font="Verdana"]Markus Bohse[/font]
March 17, 2006 at 3:42 am
Ernie,
did you check that the name of your Excel sheet is actually Sheet1. If you use a non-english version of Excel for example, the sheet will have a different name.
Markus
[font="Verdana"]Markus Bohse[/font]
March 15, 2006 at 7:16 am
To be honest, I haven't had alook at sp_blocker_pss80 and who to integrate fn_get_sql_handle but maybe you can find some ideas in this article. http://vyaskn.tripod.com/fn_get_sql.htm
Markus
[font="Verdana"]Markus Bohse[/font]
March 15, 2006 at 5:22 am
Derek,
I don't think you can script the actual maintenance plan, but you can script the job(s) created by the maintenance plan. Go to SQL Agent\Jobs and select script job as...
[font="Verdana"]Markus Bohse[/font]
March 15, 2006 at 2:44 am
You could use fn_get_sql. This way the statement won't be truncated.
DECLARE @handle binary(20)
SELECT @handle = sql_handle
FROM master..sysprocesses
WHERE spid = @@SPID
SELECT [text]
...
[font="Verdana"]Markus Bohse[/font]
March 15, 2006 at 2:34 am
Dave,
one thing to keep in mind when using different collations on one server is the fact that the tempDB will always have the default server collation. This can cause errors...
[font="Verdana"]Markus Bohse[/font]
March 10, 2006 at 2:31 am
select * from master.sysmessages
[font="Verdana"]Markus Bohse[/font]
March 10, 2006 at 2:25 am
Viewing 15 posts - 1,441 through 1,455 (of 1,654 total)