Viewing 15 posts - 1 through 15 (of 201 total)
To nitpick.
For '[]' to be valid as an answer SQL should have allowed something like
mychar LIKE '[]dam'
But this offcourse doesnt work. '[]' only work in conjunction with...
November 21, 2013 at 5:56 am
Now let me just first say that i dont have a clue what im talking about here.
But why not modifiy the app to go against a host of servers...
October 17, 2012 at 12:15 am
Worthless question because of the fact that you add something that doesnt really relate to the question. The key part in the question is the "GO 5" part. And by...
September 6, 2012 at 11:15 pm
Im sure im missing something but why not just add something like
and Vehicle.Sales_Date > DATEADD(MONTH, -1, @DATE)
instead of the
AND NOT EXISTS (select * from vehicle where Sales_Date >DATEADD(MONTH,-1,@DATE))
/T
August 8, 2012 at 6:59 am
So here i was thinking this was a rewrite of the question we had 2 questions ago, since this question had the varchar(50) on str4 which would have fixed a...
August 6, 2012 at 11:20 pm
Unless i wrote it off wrong... the answer is wrong.
create table #tmpTable (Fld1 char(1))
insert into #tmpTable values ('1')
declare @str1 varchar(45)
declare @str2 varchar(45)
declare @str3 varchar(45)
declare @str4 varchar(45)
set @str1 = 'select...
August 3, 2012 at 12:00 am
Thomas Abraham (6/21/2012)
David P Fisher (6/21/2012)
ipounder (6/21/2012)
Seems to me that both answers can be correct.Ian
I agree 🙂
Anybody care to test it? 🙂
Thanks for the question.
BTW, love the cat with the...
June 21, 2012 at 7:03 am
Carlo Romagnano (6/20/2012)
tommyh (6/19/2012)
If one wants be really picky "Depends on File System" is actually the right answer.You can install 2012 on FAT32
/T
Is FAT32 still alive?
FAT32 is deprecated...
June 20, 2012 at 2:24 am
If one wants be really picky "Depends on File System" is actually the right answer.
You can install 2012 on FAT32 and that have a limit to 4GB/file. The 524,272TB...
June 19, 2012 at 11:55 pm
dawryn (4/24/2012)
tommyh (4/23/2012)
Startvalue will be MinValue (since its not given).Check reference again. Start value is different whether sequence is ascending or descending.
You are so right.
/T
April 24, 2012 at 12:56 am
Now i cant test this. But is that answer really accurate. Reading the link... it doesnt sound so.
Since its an int the values defaults become
MinValue : -2,147,483,648
MaxValue : 2,147,483,647
Startvalue...
April 23, 2012 at 11:20 pm
Wouldnt something like this work just as well?
SELECT
CustomerId
FROM #Purchase
WHERE ProductCode IN ('A','B', 'C')
GROUP BY CustomerID
having sum(case when ProductCode = 'A' then 1 else 0 end) > 0
...
March 28, 2012 at 10:53 pm
Well i was expecting to see some answer on this when i got in this morning... but alas no 🙁
Not 100% sure about the result you want. But if i...
January 23, 2012 at 11:57 pm
Viewing 15 posts - 1 through 15 (of 201 total)