Viewing 15 posts - 2,266 through 2,280 (of 3,957 total)
Most likely then either you haven't configured the mail server correctly or for some reason it is not up at that time. GMAIL should work (I use it here)....
January 3, 2013 at 8:48 pm
Could you do something like this?
;WITH Strings (s) AS (
SELECT '000' UNION ALL SELECT '0000000' UNION ALL SELECT '00000000000'
UNION ALL...
January 3, 2013 at 8:45 pm
When you execute for 200 emails, do you see "Mail queued." appear in the Messages pane for each call to EXECUTE msdb.dbo.sp_send_dbmail?
January 3, 2013 at 8:18 pm
Try adding the code in bold, adjusting the length of the quantity CAST to VARCHAR as necessary:
SELECT oi.ItemCode + ' X ' + CAST(oi.Quantity AS VARCHAR(5)),
oi.ItemCode, oi.ItemDescription, oi.Quantity, oi.UnitPrice, oi.UnitWeight,...
January 3, 2013 at 8:15 pm
Alan.B (1/3/2013)
Edit: misread ddl. Said something stupid.I tried to solve this and failed. Well done Dwain C.
Thanks Alan!
One further point of note. Because of the fact there are...
January 3, 2013 at 8:03 pm
Greg Snidow (1/3/2013)
cs_source (1/3/2013) If you like i can post the SAS code? 🙂
Not the code for percentile, but if you can figure out a way to use OPENROWSET with...
January 3, 2013 at 7:18 pm
I get 324 unique, fruity combos!
While I could have done this as a single query, I think it will be slightly more efficient using a divide and conquer approach. ...
January 3, 2013 at 7:02 pm
I just love having something in my toolbox to deal with stuff like this. Refer to the 4th link in my signature to find PatternSplitCM and then try this:
;WITH...
January 3, 2013 at 5:49 pm
Evil Kraig F (1/3/2013)
Any twitter folks here use a samsung galaxy? If so, what app do you recommend?
About a week and a half ago, I bought my wife a...
January 3, 2013 at 5:27 pm
Bhuvnesh (1/2/2013)
tbmabry (1/2/2013)
January 2, 2013 at 11:45 pm
tbmabry (1/2/2013)
January 2, 2013 at 11:22 pm
Instead of write-only code, I've always found it immensely helpful to split up complex string manipulations for readability into individual parts using cascading CROSS APPLYs like this:
;WITH Notes (Note) AS...
January 2, 2013 at 11:07 pm
RamSteve (1/2/2013)
Query as Below and I need to make...
January 2, 2013 at 10:08 pm
Joe - Please excuse me for jumping in and interpreting for you. If you feel I'm in error, I know you won't hesitate to correct me. 😀
kwoznica (1/2/2013)
You...
January 2, 2013 at 6:47 pm
To get a working query out of the volunteers on this forum, you'll need to provide more in the way of DDL and consumable sample data. This article explains...
January 2, 2013 at 6:35 pm
Viewing 15 posts - 2,266 through 2,280 (of 3,957 total)