Viewing 15 posts - 1,456 through 1,470 (of 2,044 total)
You can loop the recordset and execute the stored procedure for each record.
June 21, 2006 at 10:39 am
How is the security delegation for linked sql server configured?
Always login using with the user context, always connect with this account ....?
June 18, 2006 at 9:14 am
Both are sql server 2000?
Same collation?
Are you sure that col3 on A isn't a timestamp?
June 8, 2006 at 10:33 am
That made me curious since we use also Oracle at work.
How do you set the option "Nested Queries" to on?
May 16, 2006 at 2:55 am
You could use openquery.
Create a view on oracle that combines both tables?
May 15, 2006 at 1:26 pm
Are you local client tools also patched to sp4?
May 15, 2006 at 1:20 pm
select companyid,staffname
from
(select companyid,staffname,1 as sequence
from tblA
where companyid='ABC123'
union
select companyid,stafname,2 as sequence
from tblB
where companyid='ABC123'
) AS mynewtable
order by companyid,stafname,sequence
May 15, 2006 at 1:01 pm
see http://www.microsoft.com/sql/prodinfo/previousversions/system-requirements.mspx
it depends on OS & edition
from 32mb of memory to 128
April 25, 2006 at 12:32 pm
I've found they arrive in SPAM sometimes. Atleast in my Yahoo account
April 12, 2006 at 12:24 pm
select @@version
According to the books online the xp_msver stored procedure gives more information
April 10, 2006 at 1:47 pm
That needs some deeper digging.
It is probably a locking issue. Are you familiar with enterprise manager/query analyer/sql profiler of sql server 2000.
Do you retrieve all the records you request instead...
April 10, 2006 at 1:09 pm
That needs some deeper digging.
It is probably a locking issue. Are you familiar with enterprise manager/query analyer/sql profiler of sql server 2000.
Do you retrieve all the records you request instead...
April 10, 2006 at 1:08 pm
April 5, 2006 at 2:24 pm
You can shrink the database (reclaim unused space) with
DBCC SHRINKDATABASE
DBCC SHRINKFILE
See the books online for more information.
April 4, 2006 at 10:11 am
Have you tried increasing/decreasing max worker threads?
April 4, 2006 at 10:04 am
Viewing 15 posts - 1,456 through 1,470 (of 2,044 total)