Viewing 15 posts - 1,726 through 1,740 (of 2,043 total)
Is this using the query analyzer? (or ODBC, ADO, OLEDB, .NET ...)
Have you specified the output parameter there too?
*side note
Please size your variables (default = 30 characters)
(@BLOCK varchar, @ROOM varchar,...
January 14, 2006 at 10:25 am
Isn't this done using
ALTER DATABASE X
MODIFY FILE (NAME = logical_file_name, NEWNAME = new_logical_name...).
January 14, 2006 at 10:20 am
Since the interval is specified in minutes, have you tried 6 min (smaller that our interval, so sql server has to write less transaction data at a time)
January 14, 2006 at 7:04 am
Any specific hint why the table hasn't been normalized?
January 13, 2006 at 11:50 am
The spike is likely related to when sql server is checkpointing the transactionlogs. (fixed interval)
Has the recovery interval changed from 0?
from the books online
SQL Server 2000 always generates automatic checkpoints....
January 12, 2006 at 11:23 am
Sql Agent also allows jobs to be run at the start of SQL Agent.
January 12, 2006 at 11:06 am
The client tools only option is on the second screen after you pick install database server
January 12, 2006 at 11:02 am
Turned out of to be a faulty usb driver. Reinstalling the mobile disk with the windows usb driver fixed it.
January 11, 2006 at 12:39 pm
What is the query plan of the query on server02?
Are both server collation compatible? (is the collation compatible option on the linked server switched on or is there a specific...
January 11, 2006 at 12:26 pm
If you run the package it runs under your security account.
If it runs as a job it runs under the sql server agent account.
My first guess was that sql server...
January 5, 2006 at 1:41 pm
What is the security account that SQL Agent uses? Local System Account or a domain account?
January 5, 2006 at 12:30 pm
Sometimes it can happen that views are mapping the wrong fields. Especially if the basetables were changed.
Is it possible to alter the view slightly so it is refreshed?
January 5, 2006 at 12:26 pm
One option is a combination of SQL Agent & a job checking the event logs + SQL mail but that would be odd to report SQL Agent errors.
Perhaps a homewritten/3th party...
January 5, 2006 at 12:14 pm
All jobs are executed under the SQL Agent account. Does it has sufficient permissions?
January 5, 2006 at 11:57 am
Could you post your actual code (maybe changing some names)?
Actually, my SP just having 02 cursor
where the outer cursor will pass some
info to the inner cursor to process
and update some...
January 5, 2006 at 11:53 am
Viewing 15 posts - 1,726 through 1,740 (of 2,043 total)