Viewing 15 posts - 1,726 through 1,740 (of 2,051 total)
1) Have you installed the oracle client on the server?
2) Have you rebooted the server afterwards?
3) Can you connect to the linked server by using the Oracle Tools on the...
January 17, 2006 at 12:20 pm
Can you use the sql profiler to trace your stored procedure?
January 17, 2006 at 12:00 pm
If I use this:
"select max(id) from ... where max(id) < @parameter" - for the previous row &
"select min(id) from ... where min(id) > @parameter" - for the next row
I think...
January 17, 2006 at 11:30 am
In access you can relink your linked tables dynamically using VBA.
http://www.mvps.org/access/tables/tbl0012.htm
You could read in the connection setting using a startup parameter, configuration file ...)
January 16, 2006 at 10:31 am
What servicepack are your sql servers running at? SP3 or SP4?
January 16, 2006 at 10:20 am
At which keyword have you seen that implicit transaction is linked to
ANSI_NULL_DEFAULT ?
SQL options control ANSI compliance options.
ANSI_NULL_DEFAULT
Allows the user to control the database default nullability. When NULL...
January 16, 2006 at 10:18 am
Any dynamic sql breaks the ownership chain.
Perhaps you could make a view which is an union of the history tables, and have your stored procedure select on the view.
Then you...
January 16, 2006 at 10:14 am
since you expect name as output parameter
CREATE PROCEDURE STUDENT (@CARD varchar(27), @CODE int, @YEAR int, @SEMESTER char(10), @CLASS varchar(50) output, @NAME varchar(20) OUTPUT) (output was missing)
Sure semester is char(10) and...
January 16, 2006 at 9:59 am
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
Viewing 15 posts - 1,726 through 1,740 (of 2,051 total)