Viewing 15 posts - 61 through 75 (of 381 total)
I would try using a Script Task. The following code (from http://msdn.microsoft.com/en-us/library/system.io.file.setattributes.aspx ) will handle it:
Dim path As String...
April 9, 2011 at 5:16 pm
I don't believe that this is an SQL XML question. You need to figure out what program is processing this XML and figure out how to get a SUM...
April 9, 2011 at 9:20 am
How do you identify files that have already been loaded?
April 8, 2011 at 3:30 pm
Is there another task running at the same time?
April 7, 2011 at 4:15 pm
How many columns are in the second table? Some rows look to have three and some look to have two. Also, it looks like there is a null...
April 1, 2011 at 8:31 pm
Try:
SELECT x.c.value('text()[1]','nvarchar(max)') as Result
from EVENTDATA().nodes ('/EVENT_INSTANCE/AlterTableActionList/Drop/Columns/Name') x (c)
April 1, 2011 at 5:40 am
Some things to try (I don't have my environment up): GetItemType("/MyFolder"). It should return the string "Folder". I am unsure what it returns if it does not...
March 15, 2011 at 3:04 pm
gadamson (3/11/2011)
Sample Date:
<Listing xmlns="http://xx.org/2008-03">
<Address>
<commons:preference-order xmlns:commons="http://xx.org/2007-08">1</commons:preference-order>
<commons:address-preference-order xmlns:commons="http://xx.org/2007-08">1</commons:address-preference-order>
</Address>
</Listing>
-- currently declaring the...
March 11, 2011 at 8:54 pm
A couple problems. You have a default namespace which you need to declare. I prefer using the "with xmlnamespaces" statement. Next, you are looking for a ListPrice...
March 11, 2011 at 10:57 am
You could use a script task to read a line from the file.
using (System.IO.StreamReader rdr = new System.IO.StreamReader(@"C:\Files\out.txt"))
{
...
March 11, 2011 at 9:07 am
So how do we contact you?
January 11, 2011 at 11:22 am
Is it the same "Type" that is mentioned in the other post? Yes.
November 19, 2010 at 6:03 am
Try this.
create table Menu (ParentID int, ID int, menuText varchar(100) , href varchar(100))
insert into Menu values (null, 1, 'Button1', null)
insert into Menu values (null, 2, 'Button2', null)
insert into Menu values...
November 18, 2010 at 1:06 pm
I'm clear what you want to do. Do you want to combine all of the csv columns into an xml datatype and load it into one column?
October 25, 2010 at 11:58 am
=iif(Sum(Field!Delta.Value) = 0, ...)
October 15, 2010 at 2:21 pm
Viewing 15 posts - 61 through 75 (of 381 total)