Viewing 15 posts - 166 through 180 (of 443 total)
Larry Coe (10/19/2010)
their website sucks
Ahh! typical. Sorry I couldn't be of more help.
As you say SQL is SQL (maybe!). 🙂
October 19, 2010 at 6:36 am
Ah, not SQL Server then. Your best bet then is the elevate software website.
October 19, 2010 at 6:09 am
Don't see why that wouldn't give you all records from both tables, that's exactly what 'UNION ALL' does.
What makes you think is not returning all records ?
Can you do a...
October 19, 2010 at 5:52 am
Based on the limited information you have provided you need to look up the JOIN statement in BOL here, or Google it here
October 19, 2010 at 5:17 am
Larry,
Going to need a lot more information here, see the 'How to post...' link in my sig below for some help.
October 19, 2010 at 5:11 am
It would have helped if you had provided more information, such as table definitions some test data etc., please see the link in my sig below.
Anyway what about this?:
DECLARE @t...
October 19, 2010 at 5:06 am
UPDATE
MyHomework
SET
Answer = 'Correct'
WHERE
MyEffort IS NULL
October 18, 2010 at 8:23 am
May I suggest that everyone just ignores that? I don't think we need another flaming thread here.
Sorry, I just replied! :blush:
Not encountered Lennie before
October 18, 2010 at 5:40 am
You are creating a big security hole in your application here. As Lynn mentioned you should *not* build up SQL in the application like this you should use a stored...
October 18, 2010 at 4:56 am
Be aware that this only works if DATEFIRST is 7. You'll need to adjust the calculation accordingly.
October 13, 2010 at 2:52 am
It is good practice to use an appropriate type to represent a date, ie DATETIME or DATE (in 2008), rather than split it into it's component parts.
In your case when...
September 29, 2010 at 3:06 am
...and you are assuming your database language is english
September 28, 2010 at 4:37 am
One thing, the sp_send_dbmail proc is in the msdb database your code should look like this:
EXEC msdb.dbo.sp_send_dbmail ...
September 2, 2010 at 4:07 am
Viewing 15 posts - 166 through 180 (of 443 total)