Viewing 15 posts - 11,581 through 11,595 (of 15,377 total)
patrickmcginnis59 (6/19/2012)
pwallis (6/19/2012)
Stewart "Arturius" Campbell (6/19/2012) hinted that it may be posssible to get the information using a...
June 19, 2012 at 10:57 am
OK so the hard part is done then. 😀 Now you just need to send the email. This is actually fairly easy. You can send email directly from sql server....
June 19, 2012 at 10:35 am
Thanks for the ddl and sample data. What is the desired output from your sample data?
June 19, 2012 at 10:09 am
pwalter83 (6/19/2012)
SGT_squeequal (6/19/2012)
select A.BOOKING_ID ...
June 19, 2012 at 9:45 am
Ok so taking your entire ddl and sample data see if this helps.
declare @temp table
(
[id] [int] IDENTITY(1,1) NOT NULL,
[Dag] [datetime],
[Locatie] [NVARCHAR] (MAX),
[Temperatuur] [int]
)
insert @temp ([Dag], [Locatie], [Temperatuur])
VALUES('20111112','Rotterdam','12');
insert @temp ([Dag], [Locatie],...
June 19, 2012 at 9:43 am
SGT_squeequal (6/19/2012)
It all depends on the task in hand, so in answer to this thread i gave some example SQL to help with his question, up to the user...
June 19, 2012 at 9:25 am
pwallis (6/19/2012)
Stewart "Arturius" Campbell (6/19/2012) hinted that it may be posssible to get the information using a join...hopefully...
June 19, 2012 at 9:03 am
marginalster (6/19/2012)
So I guess the only thing i would need...
June 19, 2012 at 8:56 am
ramadesai108 (6/19/2012)
From the response I got from...
June 19, 2012 at 8:49 am
SGT_squeequal (6/19/2012)
i always use nolock 🙂
You basically just stated that you always prefer to get dirty reads at the cost of data integrity. I would HIGHLY recommend that you not...
June 19, 2012 at 8:47 am
ananda.murugesan (6/19/2012)
Sean Lange (6/19/2012)
ananda.murugesan (6/18/2012)
Please confirm, can we changed SQL2000 collation at SQL 2008 database? if changed SQL2000 collation...
June 19, 2012 at 8:42 am
SGT_squeequal (6/19/2012)
select A.BOOKING_ID ,...
June 19, 2012 at 8:35 am
So you would need to create a trigger for insert, update and send an email when you determine it needs to be sent.
It seems you have figured out how to...
June 19, 2012 at 8:28 am
I will try this one last time. If you want some help read the article I suggested. You need to post ddl (create table statements), sample data (insert statements) and...
June 19, 2012 at 8:21 am
Thomas Abraham (6/19/2012)
Sean Lange (6/19/2012)
Thomas Abraham (6/19/2012)
Of course you are correct. My mind must still be on that beach. Thanks for correcting me.
I wish my mind was still on the...
June 19, 2012 at 8:17 am
Viewing 15 posts - 11,581 through 11,595 (of 15,377 total)