Problems with xml bulkload
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 36 articles for 0.010 sec
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 8, 2008 04:51

... into the table sample data (xml) is below: <?xml version="1.0" encoding="...<VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</... below in my dts package and xml schema, where I specify which sql ... "c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success ...
Show full article (11.33Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 8, 2008 03:46

...goes into the table sample data (xml) is below: <?xml version="1.0" encoding="... <VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</... below in my dts package and xml schema, where I specify which sql ....Execute "c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success ...
Show full article (11.07Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: Bob
Date: Jul 7, 2008 19:21

...>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07...in my dts package and xml schema, where I specify which...c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success...End Function schema ---------- <?xml version="1.0" encoding="utf-8"?> <xsd...
Show full article (11.17Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 7, 2008 09:18

...<VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59... below in my dts package and xml schema, where I specify which sql... "c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success ...> End Function schema ---------- <?xml version="1.0" encoding="utf-8"?> <xsd:...
Show full article (13.15Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: Bob
Date: Jul 7, 2008 09:08

...<VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59... below in my dts package and xml schema, where I specify which sql... "c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success ...> End Function schema ---------- <?xml version="1.0" encoding="utf-8"?> <xsd:...
Show full article (12.14Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 7, 2008 08:55

... <VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</DATE... below in my dts package and xml schema, where I specify which sql ...Execute "c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success End Function schema ---------- <?xml version="1.0" encoding="utf-8"?> <xsd:schema ...
Show full article (14.33Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: Bob
Date: Jul 7, 2008 07:45

... I have the vbscript below in my dts package and xml schema, where I specify which sql table field the data would ...:\error.log" objBulkLoad.Execute "c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success End Function schema ---------- <?xml version="1.0" encoding="utf-8"?> <xsd:schema id="EAF1NL" xmlns:xsd="http...
Show full article (12.54Kb) · Show article thread
Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 7, 2008 05:16

Hi I have the vbscript below in my dts package and xml schema, where I specify which sql table field the data would go into - ... = "c:\error.log" objBulkLoad.Execute "c:\EAF1NL.xsd", "c:\EAF1NL.xml" Set objBulkLoad = Nothing Main = DTSTaskExecResult_Success End Function schema ---------- <?xml version="1.0" encoding="utf-8"?> <xsd:schema id="EAF1NL" xmlns:xsd="http://www.w3....
Show full article (15.96Kb)
Re: annotation issue with SQLXML - BulkLoad     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: Bob
Date: Aug 28, 2008 03:41

...Maybe there are compatibility problems with XML data-types and SQL...dbo.usp_fix_xsd 'C:\...\Genome\original_schema1.xml' ------------------------------------------------------------------------------------------------ CREATE PROC dbo.usp_fix_xsd @filepath...INT SET @i = 0 WHILE @xml.exist( '(//xs:element[@type = "xs...IF @debug_yn = 1 -- Inspect the XML afterwards SELECT 'After' AS source...
Show full article (3.92Kb) · Show article thread
Re: problem with attribute in xml file     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Problems with xml bulkload in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 18, 2008 03:46

...Execute "c:\XMLfileschema.xsd", "c:\XMLFile.xml" Set objBulkLoad = Nothing MsgBox "Done." "... Hi in the schema I have ------------------------ <?xml version="1.0" encoding="utf-8... reference to the schema in the XML file? Thanks "Martin Honnen" wrote: ...> jojo123 wrote: I'm using xml bulkload using sql server 2000. The XML files are dependent on an xsd...
Show full article (1.54Kb) · Show article thread
1 · 2 · 3 · 4 · next