Viewing 15 posts - 1 through 15 (of 20 total)
Thank You.
Can I set a variable within the data flow task after a conditional split without using a script component (not sure how to write the code to...
July 15, 2009 at 2:54 pm
Thank You! That fixed it. This is a super forum.
July 6, 2009 at 9:36 pm
Would you be willing to connect to my machine via netmeeting so we could figure out what is wrong?
July 6, 2009 at 8:08 pm
removed the quotes, still no luck.
July 6, 2009 at 7:56 pm
PEPEPACO_1980 (7/6/2009)
July 6, 2009 at 7:50 pm
Thanks for spending so much time with me. It is still not working. I tried adding ServerFamilyTotal but it does not help. I do not think that was the...
July 6, 2009 at 6:46 pm
Can you verify you are using this file?
...
July 6, 2009 at 5:00 pm
Thanks - but your code did not fix the issue. Still no rows inserted in the table. What is your table definition? Mine is
USE [xmltest]
GO
/****** Object: Table [dbo].[MODEL] ...
July 6, 2009 at 4:54 pm
Thanks, but it still does not work. What can I try to find the issue?
July 6, 2009 at 4:37 pm
The file is being read fine - When I do a "SELECT @FileContents as FileContents" I see the file contents. But no rows are being inserted into the model table.
July 6, 2009 at 4:18 pm
Thanks for the help. I was able to pull the XML file contents into a variable, but I am unable to get it in a table. Here is...
July 6, 2009 at 4:05 pm
Ok. I tried that and added some declarations, but get a syntax error.
DECLARE @FileName nvarchar(50);
DECLARE @EXECCmd nvarchar(50);
DECLARE @strXML nvarchar(max);
SET @FileName = 'c:\data\test.xml'
SET @ExecCmd = 'type ' + @FileName
set...
July 6, 2009 at 1:53 pm
I created the procedure
USE [xmltest]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[SP_GET_MODELS] (@strXML xml)
AS
BEGIN
insert into MODEL
select Tbl.C.value('@name', 'nvarchar(50)') as [name] ,
Tbl.C.value('@val', 'nvarchar(50)')...
July 6, 2009 at 1:04 pm
Viewing 15 posts - 1 through 15 (of 20 total)