Viewing 15 posts - 376 through 390 (of 2,387 total)
update TableA set MONBR = LEFT(B.SAP_VALUE, 7)
from TableA A, TableB B
where A.MONBR = B.MONBR
and B.SAP_NAME = 'CFG_PRODORDERNBR'
July 14, 2004 at 1:25 pm
Correction, Limit to eight active connection (not Five) at the same time.
July 13, 2004 at 12:32 pm
select a.id, a.sysdate, b.id, b.sysdate, a.sysdate - b.sysdate as DiffDate
from test1 as a
inner join (select top 100 percent id, sysdate from Test1 where id < (select count(id) from...
July 13, 2004 at 11:56 am
MSDE can only accept 5 concurrent connection at any point of time.
July 13, 2004 at 11:31 am
You have to recreate the table and that is how EM does.
July 13, 2004 at 11:29 am
Can you post the result of select @@version.
As someone mentioned, It is a bug of SQL Server and was fixed by hotfix 780. Call Microsoft to get the hotfix.
July 13, 2004 at 9:29 am
How do you define linked server? From EM --> Security --> Linked Server --> YourLinkedServer --> Tables will tell you the schema and catalog name if you are able to...
July 13, 2004 at 9:24 am
select identity(int,1,1) as row_number, * into #temptable from yourtable
select * from #temptable
drop table #temptable
July 13, 2004 at 9:14 am
July 13, 2004 at 9:12 am
Try to disconnect and connect again.
July 13, 2004 at 9:08 am
Depending on how much data can you afford to loss, You may run transaction log backup more frequetly.
July 12, 2004 at 12:21 pm
Are you able to ping the linked server? You should start the network trace between both servers.
July 12, 2004 at 12:17 pm
It is not SQL Server issue but problem with DHCP. Check DHCP configuration on both client and the DHCP server.
July 9, 2004 at 11:22 am
create procedure sp2000_sarboxaudit as
/****************************************************/
/* created by: sql profiler ...
July 9, 2004 at 11:11 am
Viewing 15 posts - 376 through 390 (of 2,387 total)