Viewing 10 posts - 46 through 55 (of 55 total)
florian.reischl (3/5/2009)
Why the detour over the line by line cursor?
DECLARE @xml xml
SELECT @xml = BulkColumn FROM OPENROWSET(
BULK 'D:\Temp\Test\test.xml',
SINGLE_BLOB) AS x
SELECT...
March 5, 2009 at 6:10 pm
Adi Cohn (3/5/2009)
March 5, 2009 at 5:58 pm
Adi Cohn (3/4/2009)
March 5, 2009 at 2:38 am
gamma (3/4/2009)
You have to create your table (temp ot static)first.
If you do not have a stable data pattern in your text file how useful will be...
March 4, 2009 at 6:25 pm
gamma (3/3/2009)
--1, tablname1, datacolumn1, datacolumn2, datacolumn1,
--1, tablname2, 1, datacolumn2, 2, 3
--1, tablname2, datacolumn1, datacolumn2, datacolumn1,
--1, tablname1, datacolumn1, datacolumn2, datacolumn1,
--1, tablname2, 1, datacolumn2, 2, 3
drop table #Sample
create table #Sample(
f1 int,
f2...
March 3, 2009 at 9:29 pm
Thanks for the reply guys. I have been searching about BULK INSERT, OPENROWSET, OPENXML, BCP and etc on the net but can't find the exact way on how to do...
March 2, 2009 at 5:34 am
Thank you for the input Bruce, this is really helpful. I will try to research as much as I can and hope it will lead me to right direction.
If...
February 16, 2009 at 4:17 pm
er.kalidass (2/16/2009)
February 16, 2009 at 12:25 pm
er.kalidass (2/16/2009)
February 16, 2009 at 12:30 am
I know that the best solution to this kind of dilemma is SSIS but upper personnel is a bit strict in terms of licensing because it cost a lot of...
February 15, 2009 at 10:58 pm
Viewing 10 posts - 46 through 55 (of 55 total)