Viewing 15 posts - 8,281 through 8,295 (of 13,882 total)
Sum (isnull (cola,0)) + ...
Should do it.
July 13, 2015 at 1:44 pm
Lowell (7/13/2015)
July 13, 2015 at 5:37 am
Abhijit More (7/13/2015)
Flat Table with all headers from files, if no header it should come with Column0, Column1, Column2...& so on.
Are the files all...
July 13, 2015 at 5:00 am
Ross.M (7/13/2015)
Genuine question to someone who uses this method frequently (without trying to sound argumentative):
Do you find this more useful than just highlighting the block and...
July 13, 2015 at 4:25 am
Abhijit More (7/13/2015)
Now the challenge is I have to load any received...
July 13, 2015 at 4:22 am
trboyden (7/10/2015)
Phil Parkin (7/10/2015)
I agree with you for production code. The general thrust of the thread, however, is around the creation of utility or setup scripts which are run and...
July 10, 2015 at 8:32 am
trboyden (7/10/2015)
July 10, 2015 at 6:04 am
caojunhe24 (7/9/2015)
Now Im trying to schedule a ssis job run from 12th business day to 20th business day for every month.
(The package should run 12th-20th everyday).
Can anyone tell...
July 9, 2015 at 9:28 am
Last day of previous month is this, but not in the format you want.
(DT_WSTR, 40) dateadd("d",-1,Dateadd("m",DATEDIFF( "m", (DT_DBTIMESTAMP) "1900-01-01", getdate() ), (DT_DBTIMESTAMP) "1900-01-01"))
I'll leave it to you to...
July 9, 2015 at 5:51 am
First day of previous month:
right("0" + (DT_STR, 2, 1252) MONTH( dateadd("mm",-1,getdate())),2) + "/01/"+ (DT_STR, 4,1252) year(dateadd("mm",-1,getdate()))
July 9, 2015 at 5:35 am
endayagilbert (7/9/2015)
Thank you.
What I want to achieve are:
a) get the first day date of the previous month based on current date
b) get the last day date of the previous month...
July 9, 2015 at 5:20 am
If you will take a step back and tell me
a) What you are trying to achieve and
b) What format you want the result in
I might be able to help you...
July 9, 2015 at 5:11 am
This converts a datetime to a string.
(DT_WSTR, 30) GETDATE()
July 9, 2015 at 4:25 am
You can execute SSIS packages from SQL scripts (see here for more info).
So you can script the execution fairly easily.
July 9, 2015 at 12:31 am
In SQL Server 2008 you had to Set the SSIS Run 64 bit property False or it would fail.
Not always. Depends on the requirement.
It can be found under Project Properties...
July 8, 2015 at 11:10 am
Viewing 15 posts - 8,281 through 8,295 (of 13,882 total)