Viewing 15 posts - 1 through 15 (of 19 total)
John Rowan (7/21/2009)
I'm in agreeance with the others. Why do you think you need a temporary table for SSIS?
There are a lot of situations....We had a ton of predeveloped...
July 22, 2009 at 8:13 am
dblanchard (7/9/2009)
if you have ever worked with localization, the answer is clearly nchar(1)...
Im with you there...nchar(1).
No character set was specified....so I have to choose unicode to handle all...
July 14, 2009 at 3:04 pm
I know this is an older post but....in this case it does appear that the resolution was as simple as "you cant concatinate a null with a string without first...
July 9, 2009 at 3:03 pm
I would have thought that too, except he proved the performance gain by the IO stats when doing the switch verses the typical way.
May 10, 2009 at 7:37 pm
I find that even when using SET FMTONLY ON; (and NOCOUNT ON) I still have issues with using temp tables in general in SSIS..i can get around it by...
May 7, 2009 at 3:53 pm
...but then again, assuming that there are no real concerns (small table, dev database, etc.) with using the "create destination, load destination, drop source, and rename destination" table approach, I'd...
April 14, 2009 at 2:57 pm
I had a similar situation where i wanted a group to only run/stop jobs, but not modify, etc...i created the following role, which is essentially the SQLAgentOperatorRole minus certain permissions:
USE...
September 3, 2008 at 9:43 am
I too used your similar solution, but i do not want to allow my users to alter jobs, schedule them, delete them, etc. So i created the following...
August 20, 2008 at 11:15 am
Nice, that works. I forgot about SET ROWCOUNT, havent had to use in a while. Anyways, now there is a post from me with a cursor in it....crap!...
August 7, 2008 at 2:23 pm
Sergiy (8/6/2008)
OK, I read this thread as well.
And I cannon figure out one thing.
Everyone agreed the puzzle was designed...
August 7, 2008 at 8:45 am
Im pretty OCD about the naming conventions that I use, but as long as you have something, it really doesnt matter what they are. Granted, some seem to work...
June 23, 2008 at 8:08 am
To further complicate things...can you actually SET ANSI_NULLS [highlight=#ffff11]= [/highlight]ON?
March 4, 2008 at 1:38 pm
I got this correct, but only because i had to assume that the "correct" answer wouldnt be totally correct.
Select 1 as "Col1", Col2, Col3
From Table
Group By Col2, Col3
...will...
March 3, 2008 at 2:07 pm
tymberwyld (2/29/2008)
February 29, 2008 at 11:14 am
This is NOT what I would do, but depending on the size of your company table...its something different
Declare @SoundExName varchar(50)
Set @SoundExName = 'Smith, John'
Select a.EmpId, Difference(a.AssociateNm, @SoundExName) Diff
Into #Temp
From Associate...
February 29, 2008 at 8:01 am
Viewing 15 posts - 1 through 15 (of 19 total)