Viewing 15 posts - 3,916 through 3,930 (of 14,953 total)
tfifield (6/21/2011)
June 22, 2011 at 8:06 am
Are you asking for what the different clauses of the query do? As in "What does SELECT do? And what does FROM do?"
If so, then your best bet...
June 21, 2011 at 2:14 pm
I prefer Select Into, because in performance tests I've done it's slightly faster, and because it will preserve DDL changes in the source Select between iterations.
E.g.: If you have to...
June 21, 2011 at 2:08 pm
CREATE TABLE #T (Col1 INT, Col2 INT) ;
INSERT INTO #T
(Col1, Col2)
VALUES (123, 888),
...
June 21, 2011 at 2:04 pm
Brandie Tarvin (6/21/2011)
GSquared (6/21/2011)
SSIS job and they don't know about derived columns????
Is that the part where I make something up and hope it fits with the rest of the data?
@=)
...
June 21, 2011 at 1:57 pm
Loner (7/11/2008)
June 21, 2011 at 11:08 am
Only reply I can give is "read your own statement". Read it as if someone else wrote it, without any internal thoughts that weren't in the words. I'm...
June 21, 2011 at 8:57 am
Craig Farrell (6/20/2011)
AAARRRGGGHHH....
One more person, just one more, who applies for an SSIS position (it's specifically advertised as an SSIS position) who's done nothing more than use it as a...
June 21, 2011 at 8:47 am
Jeff Moden (6/21/2011)
GSquared (6/21/2011)
June 21, 2011 at 8:43 am
Phil Parkin (6/21/2011)
No, I read your message correctly. What I disagree with is "...consider doing yourself a favor and omit the readability word...". Yes, it's only in there to make...
June 21, 2011 at 8:20 am
Jeff Moden (6/20/2011)
GSquared (6/20/2011)
June 21, 2011 at 6:47 am
You can get the script for it from Profiler. It'll use sp_trace_create, sp_trace_setevent, and so on. Create the trace in Profiler, then stop it and get the script...
June 21, 2011 at 6:43 am
Sure did. Kids, the lesson here is don't post when suffering major sleep deprivation.
Here you go.
DECLARE
@sql VARCHAR(MAX),
@Text VARCHAR(MAX),
...
June 21, 2011 at 6:39 am
KerberosLLC (6/21/2011)
Jayanth_Kurup (6/21/2011)
Am sorry i should have mentioned this is a development environment.
Understood, provided your UAT environment matches production. It's the only way to do valid UAT testing.
Also, for the...
June 21, 2011 at 6:37 am
Mike, on your point about specialization vs Swiss-army-knife devs, yes, more companies would benefit from specialization than are aware of it.
If you turned that post into an editorial, and sent...
June 21, 2011 at 6:23 am
Viewing 15 posts - 3,916 through 3,930 (of 14,953 total)