Viewing 15 posts - 46 through 60 (of 98 total)
wait type found is "CXPACKET" . This is because of an insert statement to temp table "insert into #tmp as select ........"
What other parameter should I consider and move further...
July 7, 2015 at 2:16 am
Grant Fritchey (7/3/2015)
July 3, 2015 at 4:37 am
Thank You.
Do I have to consider any thing before executing following ?
Will it take more time to reconfigure?
will database be available to connect during this activity ?
Do I...
April 24, 2015 at 9:01 am
Thank you Erland Sommarskog.
I got the same link.
I was curious about its impact. Whether I have to generate and embed it to app or just install it and it may...
April 16, 2015 at 7:12 am
Thank you.
I was so confuse as on internet people are saying binary_checksum cannot guarantee to find differences but hashbyte is much accurate.
As we have seen examples , it seems it...
March 3, 2015 at 7:46 am
thank you britton.
Following worked. I was not aware that XML column becomes case sensitive while selecting.
DECLARE @testXml XML;
set @testXml=
'<invoices>
...
September 19, 2014 at 10:27 am
LutzM (8/6/2014)
No I'ver reached the point where my very limited Oracle knowledge ends...Maybe Oracle requires values for each column. Don't know.
Thank you Lutz.
I will take care of oracle stuff, just...
August 6, 2014 at 6:24 am
LutzM (8/6/2014)
Yes, the 2nd option is used when there's a need to send data from a SQL source to an Oracle target.
I have used 2nd option but having following error....
August 6, 2014 at 6:06 am
Thank you Lutz.
RPC with Execute worked.
second option you have mentioned is use to insert records in Oracle from local MSSQL object ?
August 6, 2014 at 5:46 am
Phil Parkin (12/23/2013)
WHILE @@rowcount > 0
BEGIN
begin tran
INSERT INTO tblPricingExc2 --table tblPricingExc2 has an Identity column as PK.
( Key ,
Flag ,
Id
)
SELECT...
December 23, 2013 at 6:10 am
Thanks Phil.
Begin and Commit tran worked. Does this avoid logging ?
I have insert and Update . No delete required.
December 23, 2013 at 5:59 am
Viewing 15 posts - 46 through 60 (of 98 total)