Viewing 4 posts - 1 through 5 (of 5 total)
This seemed to have worked:
EXEC('
INSERT INTO mapData_center(sourceXML)
SELECT *
FROM OPENROWSET(BULK ''C:\parcels_poly_center.xml'', SINGLE_CLOB) AS X'
)
Thanks for all the help.
September 3, 2008 at 11:59 am
If I'm logged into SQL Server Management Studio using Windows Authentication, shouldn't SQL Server use my account?
September 3, 2008 at 10:53 am
In order to make sure I wasn't making a typo I pretty much copied and pasted your code:
DECLARE @FileName VARCHAR(500)
SET @FileName = 'C:\parcels_poly_center.xml'
CREATE TABLE #XmlImport
...
September 3, 2008 at 10:12 am
Thanks for the reply. I've been trying this approach, but it seems like each way I try, it says the xml file does no exist when I have the...
September 3, 2008 at 9:48 am
Viewing 4 posts - 1 through 5 (of 5 total)