Viewing 15 posts - 1,366 through 1,380 (of 2,062 total)
It should die soon after that. Do you check it with sp_who?
September 20, 2006 at 12:17 am
You could use the sql server best practices analyzer on the db. It will report which stored procedures,views needs some work. Like owner not specified ...
Perhaps you will have access...
September 19, 2006 at 2:17 pm
The process needs to be kept alive till the rollback is completed (which can also take a long time).
Any clues why the vb app suddenly started to work slower?
September 19, 2006 at 2:09 pm
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
Viewing 15 posts - 1,366 through 1,380 (of 2,062 total)