Viewing 15 posts - 10,126 through 10,140 (of 13,879 total)
opc.three (2/18/2013)
February 19, 2013 at 6:42 am
And here's a really obvious (yeah right!) way of making Lynn's example work:
declare @DateVal datetime;
set dateformat mdy;
set @DateVal = '2013-02-14T00:00:00';
select @DateVal;
go
declare @DateVal datetime;
set dateformat dmy;
set @DateVal = '2013-02-14T00:00:00';
select @DateVal;
go
February 19, 2013 at 5:13 am
Are you sure that having a single flat file containing mixed data would be an acceptable solution? Sounds like a real mess to me, but, funnily enough, I had to...
February 18, 2013 at 9:09 am
Your ExecuteSQL task will have associated with it a system variable called ContainerStartTime, scoped only at the task level. Maybe that is worth a try.
February 18, 2013 at 7:29 am
I apologize once again if that will help.
I would have removed this post if it was in my hands, but please give me a chance to explain that I was...
February 15, 2013 at 4:18 am
Sachin Vaidya (2/14/2013)
Your response definitely shows a path to move ahead, thanks a lot for that.
But on the other side, it was very rude. It will discourage people from...
February 15, 2013 at 3:11 am
subramani.rudrappa 78855 (2/15/2013)
i have mapping table which holds codes in Sql and i need to get dat from oracle source based on this codes
please let me know how can we...
February 15, 2013 at 2:27 am
l.caufriez (2/7/2013)
it's working except that the ftp task will not go to the specified remote path, and i think it's because the remote path...
February 15, 2013 at 2:25 am
quillis131 (2/14/2013)
Note: I tried to do with XML task and XSLT but couldn't make it work, it gives me an...
February 15, 2013 at 2:12 am
JblakTSql (2/14/2013)
no, I am not able to create indexes for this data. It has duplicates in it.
Yes you are. Indexes do not have to contain unique values.
February 15, 2013 at 1:16 am
Here is one way, using running totals & an additional column.
1) Create a FamilyId column on Members_GD
alter table dbo.Members_GD
add FamilyId int
2) Populate the FamilyId column using grotty double quirky update...
February 14, 2013 at 3:30 pm
Do you have an index on the 'server' column?
February 14, 2013 at 9:55 am
iamsql1 (2/14/2013)
i am writing ssis package having For Each Loop Container Which iterates through DropBox Folder ..
But when it iterates, it...
February 14, 2013 at 5:15 am
kingdonshel (2/13/2013)
February 13, 2013 at 10:17 am
Weird - have you tried stepping through your code in debug mode to verify exactly what is in your attachment variable?
The code provided looks like it should work.
February 13, 2013 at 9:32 am
Viewing 15 posts - 10,126 through 10,140 (of 13,879 total)