Viewing 15 posts - 11,581 through 11,595 (of 15,381 total)
From your description it sounds like a solid design.
For your query question, you said you had around 60 meters? So you want a column for every meter? That isn't...
June 19, 2012 at 3:02 pm
Siten0308 (6/19/2012)
maybe you can help me answer my other question, which might solve the problem, i am going to make a temp table, then insert the records I want...
June 19, 2012 at 12:56 pm
ramadesai108 (6/19/2012)
I ended up doing this and it worked:
AND ',' + @EmployeeId + ',' LIKE '%,' + CAST(e.ID AS varchar(10)) + ',%'
Thank you all for...
June 19, 2012 at 12:26 pm
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
Viewing 15 posts - 11,581 through 11,595 (of 15,381 total)