Viewing 3 posts - 1 through 3 (of 3 total)
Thanks, we don't have time to build drivers right now...
We have both 32 and 64 bit installed on desktop. Only 64 bit on server. Runs locally, not on...
March 29, 2016 at 3:40 pm
I'm trying to do use the SP on a Standard Edition 2005 SQL Server that can't be upgraded to 2008 R2 yet. You can't set the run in 32...
July 6, 2015 at 4:26 pm
It's easy without SSIS. Here's a demo
--make the table you need
CREATE TABLE XmlImportTesting(
xmlFileName VARCHAR(300) NOT NULL,
xml_data XML NOT NULL
)
GO
DECLARE @xmlFileName VARCHAR(300)
SELECT @xmlFileName = '\\aitl-testsql1\e$\EProfTestXML\Item3.txt'
-- dynamic sql is just so we...
June 17, 2010 at 4:55 pm
Viewing 3 posts - 1 through 3 (of 3 total)