Viewing 15 posts - 1,351 through 1,365 (of 2,044 total)
Can you check if any connections are left open? Maybe there is one with a transaction left open/select pending. (last batchtime in the weeked)
For a custom temporary db, perhaps you...
September 19, 2006 at 1:58 pm
Make sure the bit-field doesn't allow nulls
September 19, 2006 at 1:52 pm
Not sure if it may help. I've created a querydef that called a stored procedure. The access-reports recordsource would be then that querydef. Not sure if I've layered another querydef...
September 18, 2006 at 12:58 pm
Naming in Oracle is a little different.
Try
select count(*) from [linked_servername]..[OracleSchemaName].[Viewname].
September 18, 2006 at 9:50 am
Buran Kumar Tiwari,
Can you make a seperate topic of the issue with CSV-Excel, eventually with a link to this post? The logdates showing as 00.00.0, are they displayed as real-dates...
September 18, 2006 at 1:00 am
a word-document how to set up an oracle linked server:
http://www.ed.uiuc.edu/datamasters/Documents/GEN_SQLServerOracleLinkedServer.doc
the microsoft way:
September 15, 2006 at 7:56 am
seems sql 2000 comparision got replaced with the 2005 version
from the books online (2000)
This topic summarizes the features that the different editions...
September 14, 2006 at 10:35 am
DELETE ABCD
FROM ABCD
INNER JOIN
(
SELECT ACCTNO,MAX(LOTDATE) AS MAX_DATE
FROM ABCD
GROUP BY ACCTNO
) AS MOST_RECENT
ON MOST_RECENT.ACCTNO=ABCD.ACCTNO
AND ABCD.LOTDATE<MOST_RECENT.MAX_DATE
should do it
September 14, 2006 at 4:40 am
Normally you can't remove a login when it owns some objects. (Test it first.)
September 14, 2006 at 4:34 am
You will need to install the oracle drivers on the sql server machine. A restart of sql server is than necessary.
September 14, 2006 at 4:31 am
Can't find the microsoft page immediately.
a list of performance differences:
http://www.sql-server-performance.com/q&a98.asp
Enterprise edition is required for clustering, built-in logshipping, access to more cpu & memory.
September 14, 2006 at 4:25 am
Under what account is sqlagent running? Local system account (no network) or another? Does it work if you give the command instead of the job?
Why are you resorting to administrative...
September 13, 2006 at 1:22 pm
Were the test performed straight on the server (to eliminate network congestions)? Can you conduct some more tests ( about 1000...).Were there any caches freed (DBCC FREEPROCCACHE)? Statistics are up...
September 13, 2006 at 1:14 pm
I'm lately facing locking too. For one particulary table it was solved by changing the clustered index.
September 13, 2006 at 12:47 pm
There is an option hidden in outlook to automatically wrap lines longer than ... for unformatted email.
Can be found at extra->options->email-layout->message layout->internet layout->Options for unformatted text->automatically wrap when line is...
September 13, 2006 at 12:30 pm
Viewing 15 posts - 1,351 through 1,365 (of 2,044 total)