Viewing 15 posts - 1 through 15 (of 21 total)
Hi hunchback,
That did the trick, thank you!!
November 26, 2013 at 10:28 pm
Thank you for your reply. I took a look at this article and, while useful for certain situations, I don't understand how it would apply to mine.
I need to...
August 17, 2013 at 10:13 pm
Thank you all for helping. The simple and direct answers gave me options for the solution. Thanks again!
August 28, 2012 at 10:31 pm
For this,
SELECT retailer_name, blood_type, blood_price,
COUNT(*) OVER (PARTITION BY retailer_name)
AS inventory_cnt
FROM Vampire_Retailers AS VR
WHERE blood_type = 'B';
Wouldn't you instead get nameA, 'B', 2.75, 1 and not nameA,...
August 28, 2012 at 12:08 pm
Thank you so much!
August 27, 2012 at 8:34 am
Thank you. This explains it: 1.79E+308 is 1.79*10^(308)
I wasn't aware of that. Sorry, I'm not a math guy 🙂
Thank you again.
January 10, 2012 at 10:13 am
The calc is not the question. 1.79E+308 is. I don't know what 1.79E+308 is or how to interpret it.
January 10, 2012 at 9:22 am
Thanks, Cadavre, for your response.
I'm not sure what 1.79E+308 represents or means. Which one of the two exceeded this value (and how)?
To answer your question, there are large sums...
January 10, 2012 at 8:57 am
Thanks, all, for the responses. I am going to try the OnInformation event as suggested. I cannot try the exit code approach, since I believe that will be...
November 16, 2011 at 12:47 pm
Hi,
Feedtype is a string. pNeedPorSessions is an INT32. Both are in the same (main) scope. I tried using this expression in pNeedPorSessions.
October 26, 2011 at 1:27 am
I take that back - it does work. I wasn't seeing it correctly in the locals window. It hits on the Post Execute Event.
Thank you both...
October 8, 2011 at 10:47 pm
Thank you Jack and Koen for your responses. Sorry for my delay in getting back to you, but I am only able to work on this on weekends. ...
October 8, 2011 at 10:41 pm
I was able to find it - when right clicking on an object within a container to add precedence constraint, it is not an option (only the container itself is)....
October 2, 2011 at 3:57 am
Thank you both Ron and SSC-Enthusiastic. I see it now.
I was able to filter down further by modifying to:
WHEN NOT MATCHED BY SOURCE AND T.AsOfDate = @Date...
September 3, 2011 at 11:00 pm
Thank you for the articles. I've read them, and the one thing I am wondering is...are try/catch constructs best used for when only doing DML? I have been...
May 29, 2011 at 1:04 pm
Viewing 15 posts - 1 through 15 (of 21 total)