Viewing 15 posts - 91 through 105 (of 366 total)
This could a good start :
the "Connecting Through SQL Server Authentication" section.
Cheers,
Iulian
September 22, 2014 at 1:53 pm
In the first part you get the last payment date for each customer, from orders table:
;WITH CTE_LastOrder (CustomerID, LastOrderDate) As
(
SELECT CustomerID, MAX(PaymentDate) LastOrderDate
FROM [Order]
GROUP By CustomerId
)
This looks OK to...
September 22, 2014 at 1:48 pm
Thank you Don for the question. Nice one.
Thank you to Okbangas and Eirikur for putting together the sample.
Thumb up!
Cheers,
Iulian
September 22, 2014 at 7:48 am
hjp (9/18/2014)
Koen Verbeeck (9/16/2014)
Sean Pearce (9/16/2014)
And this relates to SQL Server how? I am not here for maths lessons.It's an exercise in reading T-SQL 🙂
No, it's not. It's a math...
September 18, 2014 at 8:03 am
Hany Helmy (9/18/2014)
Good question, thanx, note that BlockSize option typically affects performance only when writing to tape devices not to disk.
yes, I ignored that one too 🙂
Cheers,
Iulian
September 18, 2014 at 7:47 am
That was a lovely exercise, thank you Shiva.
Iulian
September 18, 2014 at 1:06 am
nice one , thank you for this qotd
Iulian
September 18, 2014 at 12:51 am
Nice one, thank you, and the article is prety strighforward
September 17, 2014 at 2:32 am
Stewart "Arturius" Campbell (9/12/2014)
Iulian -207023 (9/12/2014)
OK I got it now. yes Truncate sounds very much like a DDL statement and it makes sens not to fire triggers.
Just...
September 12, 2014 at 1:46 pm
Stewart "Arturius" Campbell (9/12/2014)
Iulian -207023 (9/12/2014)
GilaMonster (9/12/2014)
Meow Now (9/11/2014)
September 12, 2014 at 6:36 am
GilaMonster (9/12/2014)
Meow Now (9/11/2014)
September 12, 2014 at 5:28 am
ouch, why have a assumed the table Employees exist !? :Wow:
September 12, 2014 at 3:44 am
Nice question, thank you for spotting it
Iulian
September 12, 2014 at 3:27 am
TomThomson (9/11/2014)
Iulian -207023 (9/11/2014)
September 11, 2014 at 6:42 am
j.green (9/11/2014)
What happens if while the pages are deallocated , another task / process / txn ( or something ) allocates that space for other purposes , and I run...
September 11, 2014 at 5:07 am
Viewing 15 posts - 91 through 105 (of 366 total)