Viewing 15 posts - 5,521 through 5,535 (of 10,144 total)
L' Eomot Inversé (9/28/2012)
ChrisM@Work (9/28/2012)
Koen Verbeeck (9/28/2012)
laurie-789651 (9/28/2012)
Koen Verbeeck (9/28/2012)
Grant Fritchey (9/27/2012)
Who is going to make it to any of the SQL in the City events coming up in the...
October 1, 2012 at 1:52 am
SQL_path (9/28/2012)
Sean Lange (9/28/2012)
I would recommend using the splitter found...
September 28, 2012 at 8:53 am
SQL_path (9/28/2012)
Hi,When I run the below query ...
Can you post the actual query you are attempting to run? There are several errors in the query you posted.
September 28, 2012 at 8:44 am
What's the datatype of column [itt_jobcodeid], table [LibertyGasGroup_MSCRM].dbo.[FilteredITT_instruction]?
September 28, 2012 at 7:38 am
dwain.c (9/27/2012)
I think this is a pretty snappy query too.
;WITH Tally (n) AS (
SELECT TOP (SELECT 1+MAX(DATEDIFF(day, StartDate, EndDate)) FROM #RoomDates)
...
September 28, 2012 at 7:21 am
emile.milne (9/28/2012)
When I run this that missing index is top with 3BN advantage, server last restarted in June.
I use the DMV as a guide, and see if consolidation is possible...
September 28, 2012 at 6:54 am
S_Kumar_S (9/28/2012)
I do a check on a table if a particular record exists in table using IF EXISTS(SELECt 1 FROM tab1 WHERE id=1) inside a proc. Now if record...
September 28, 2012 at 5:53 am
gsd1 (9/28/2012)
Thank you for the response.
I am receiving a list of 50000 records from a service.
I am planning to write a stored procedure with table-valued parameter and...
September 28, 2012 at 5:39 am
Barry Couch (9/28/2012)
opc.three (9/27/2012)
If not, or you must do this in the database, you could look...
September 28, 2012 at 5:36 am
emile.milne (9/28/2012)
How do I consolidate these 2 together,...
September 28, 2012 at 5:35 am
laurie-789651 (9/28/2012)
Grant Fritchey (9/28/2012)
anthony.green (9/28/2012)
Grant Fritchey (9/27/2012)
THREADIZENS!Who is going to make it to any of the SQL in the City events coming up in the next week+?
I missed the London...
September 28, 2012 at 4:40 am
laurie-789651 (9/28/2012)
ChrisM@Work (9/28/2012)
Koen Verbeeck (9/28/2012)
Grant Fritchey (9/27/2012)
THREADIZENS!Who is going to make it to any of the SQL in the City events coming up in the next week+?
If you do one...
September 28, 2012 at 4:37 am
Koen Verbeeck (9/28/2012)
laurie-789651 (9/28/2012)
Koen Verbeeck (9/28/2012)
Grant Fritchey (9/27/2012)
THREADIZENS!Who is going to make it to any of the SQL in the City events coming up in the next week+?
If you do...
September 28, 2012 at 3:53 am
laurie-789651 (9/28/2012)
Using Decimal data type will fix it:
-------------------------------------------------------------------------
DECLARE @A Int, @b-2 Int, @C Int;
SELECT @A = 9,
@b-2 = 3,
@C = 2;
SELECT Cast(SUM(@A*@B) / SUM(@C) AS DECIMAL(30,5));
SELECT...
September 28, 2012 at 3:51 am
Viewing 15 posts - 5,521 through 5,535 (of 10,144 total)