Viewing 15 posts - 4,081 through 4,095 (of 6,486 total)
You can change the behavior on truncation. Look under "configure error handling" in the SSIS data flow task (each of the various stages should have a config error handling)....
March 18, 2008 at 2:31 pm
Lynn Pettis (3/18/2008)
March 18, 2008 at 2:02 pm
Chris Morris (3/18/2008)
Jeff, you like playing with macros in Excel - I...
March 18, 2008 at 1:57 pm
Mh (3/18/2008)
Jo Pattyn (3/18/2008)
After you change the recovery to Full, do you take a full backup/differential backup before taking the transaction log backup?
After changing the recovery to Full, I take...
March 18, 2008 at 1:45 pm
Edogg (3/18/2008)
WOW.... Thanks Matt. Guess I need to go back to the coffee machine. I tried to make this way too difficult.
don't sweat it - it took me a long...
March 18, 2008 at 1:37 pm
Also - a method without the CASE would look like...:
...
WHERE
((Monthid-1)/3 +1)=@quarter
...
Of course - the first method would allow for more efficient...
March 18, 2008 at 1:13 pm
You're not off as far as you think. It's just that CASE is use to conditionally return a value, so not an IN statement.
Try it this way:
SELECT *
FROM tblData
WHERE...
March 18, 2008 at 12:53 pm
...Since Model is used to create the new databases, if you set up a user to have datareader access in Model, by default that user will have datareader in every...
March 18, 2008 at 12:46 pm
Jeff Moden (3/18/2008)
March 18, 2008 at 12:40 pm
jfletcher (3/18/2008)
March 18, 2008 at 12:32 pm
Recommendation would be to add another parameter, and make it an OUTPUT parameter.
Books online has a decent example (Look for Use Output Parameters once on the page):
http://msdn2.microsoft.com/en-us/library/aa258259(SQL.80).aspx
Your mocked up code...
March 18, 2008 at 12:23 pm
Happy to help. Thanks for the feedback...
March 18, 2008 at 12:14 pm
hmm... I'm only exposing person_pay one time. Sounds like you have something else exposing it.
that being said - you can always just change the alias if you so wish.
SELECT...
March 18, 2008 at 12:09 pm
Viewing 15 posts - 4,081 through 4,095 (of 6,486 total)