Viewing 15 posts - 61 through 75 (of 137 total)
rs80 (4/1/2013)
April 1, 2013 at 8:57 am
rs80 (3/29/2013)
March 29, 2013 at 4:14 pm
chris.rogers00 (3/28/2013)
March 28, 2013 at 9:28 am
Eugene Elutin (3/19/2013)
kl25 (3/19/2013)
Eugene Elutin (3/19/2013)
Are you sure that OP wants one column with all subjects concatenated?
Agreed. 🙂 My query just presents the results in the format the OP...
March 19, 2013 at 10:47 am
Eugene Elutin (3/19/2013)
Are you sure that OP wants one column with all subjects concatenated?
Agreed. 🙂 My query just presents the results in the format the OP listed at the...
March 19, 2013 at 10:25 am
Here's one possibility.
Select
dw.day + ' ' +
(
Select sts.Subject + ' '
From SubjectToStudy sts
Where dw.WeekID = sts.WeekID
Order by WeekID
For XML Path ('')
) as list
From
DAYOFWEEK dw
;
March 19, 2013 at 9:13 am
I add an annotation block to the package and keep high level revision history there. The packages are source controlled but the annotation block gives me a quick record...
March 4, 2013 at 11:47 am
Here's another option.
REPLACE((DT_WSTR, 10)(DT_DBDATE)GETDATE(),"-","")
February 28, 2013 at 9:14 am
Here's another option:
SUBSTRING((DT_WSTR,10)(DT_DBDATE)GETDATE(),6,2) + SUBSTRING((DT_WSTR,10)(DT_DBDATE)GETDATE(),9,2) + SUBSTRING((DT_WSTR,10)(DT_DBDATE)GETDATE(),1,4)
February 27, 2013 at 3:45 pm
latingntlman (2/27/2013)
February 27, 2013 at 9:19 am
Here an article by Andy Leonard that demonstrate how to put data from a result set into variables.
Object Variables, ResultsSets, and Foreach Loop Containers[/url]
If you have multiple rows in your...
February 26, 2013 at 3:47 pm
I agree with Sean. Please see the link he has referenced. We'll be able to give you better help with more complete information.
In the meantime, take a look...
February 25, 2013 at 9:09 am
latingntlman (2/25/2013)
quick update:At this point I just need to append a date time stamp to the name of the file (i.e. FileName_YYYYMMdd_HHmmss.txt)
How can I accomplish this?
1. Set a string variable...
February 25, 2013 at 8:56 am
You're welcome. Glad you got the issue worked out. 🙂
February 21, 2013 at 9:15 am
Here's the general approach I use:
1. Set a variable for the path (folder). Learned early on to separate the path because paths that I thought would NEVER change...
February 21, 2013 at 9:00 am
Viewing 15 posts - 61 through 75 (of 137 total)