Viewing 15 posts - 271 through 285 (of 321 total)
I'd have to agree with Piers,
This looks like it could be useful under certain circumstances and for that reason the article is worthwhile.
In most cases though, I would not...
December 5, 2008 at 2:31 am
WayneS (8/19/2008)
Hey all...I don't know how it happened, but the code in the article is missing some spaces from what I submitted.
Seems to be happening on other articles...
August 20, 2008 at 4:37 am
Nice article, looks very similar to getting a list of values from a table and looping through them.
This is one of the things which I don't like about SSIS, sometimes...
August 19, 2008 at 2:12 am
magarity kerns (8/13/2008)
August 13, 2008 at 9:25 am
David,
If you're using reporting services and users have web access to run reports then reports can easily be integrated into Excel (not sure about Excel 2000) using a web query.
This...
August 13, 2008 at 6:07 am
I think this calls for Monty Pythons The Four Yorkshiremen skit:
August 5, 2008 at 3:05 am
Sorin Petcu (2/1/2008)
July 4, 2008 at 2:29 am
john (4/15/2008)
Speaking as a former freelance contractor now turned back to the ways of regular paychecks, I thought the article was very fair and reflects my own experience.
What tempted you...
April 15, 2008 at 4:18 am
Mahesh Bote (4/15/2008)
No need to write separate select for assigning values for multiple variables. Within the single Select this can be done and even it is faster than SET.
[/font]
not part...
April 15, 2008 at 4:10 am
This little snippet might help
select * into #temp1
from [add your source objects here]
where 1=2
select * from tempdb.dbo.syscolumns
where id = (select id from tempdb.dbo.sysobjects where name like '#temp1%')
drop...
April 15, 2008 at 3:59 am
declare @HasAnyRows int
DECLARE @COL VARCHAR(50)
DECLARE @Section int
SELECT @Section = 1
SELECT @HasAnyRows = 0
IF @HasAnyRows <= 0 and @section = 1
SELECT @COL =...
April 15, 2008 at 2:58 am
Viewing 15 posts - 271 through 285 (of 321 total)