Viewing 15 posts - 4,036 through 4,050 (of 6,026 total)
Novices have no business designing databases, so I won't reiterate all the bad patterns related to that. Instead I'll mention a few observations regarding common mistakes that end users make...
March 20, 2015 at 7:27 am
Hopefully R# will be to data analytics what C# is to application development, and it won't simply be a curious wallflower like J# and F#.
March 19, 2015 at 8:36 am
You can use the following stored procedure and DMV queries to get information about server disk space. Because it runs within context of SQL Server, you only need connect to...
March 18, 2015 at 9:18 am
SQL_Kills (3/17/2015)
Hi Eric,This is not giving me the result I require.
Thanks
Sorry about that; I forgot to add Y.ID = T.ID in the join, which is why it was previously cross...
March 18, 2015 at 7:33 am
Miles Neale (3/17/2015)
Eric M Russell (3/17/2015)
Miles Neale (3/17/2015)
March 17, 2015 at 4:23 pm
select T.ID, T.Amount, Y.Amount as Yesterday_Amount, T.InjectedDate
from Transactions as T
left join Transactions as Y
on cast(Y.InjectedDate as date) = dateadd(day,-1,cast(T.InjectedDate as date))
order by T.InjectedDate, T.ID;
If join performance...
March 17, 2015 at 4:03 pm
Miles Neale (3/17/2015)
Eric M Russell (3/17/2015)
Miles Neale (3/17/2015)
Eric M Russell (3/17/2015)
March 17, 2015 at 3:23 pm
Miles Neale (3/17/2015)
Eric M Russell (3/17/2015)
March 17, 2015 at 1:00 pm
Charles Kincaid (3/17/2015)
A traffic violation is a misdemeanor (minor crime). A charge like that has to be brought either by an officer or citizen. But that individual...
March 17, 2015 at 11:49 am
This would be an excellent interview question for those situations where someone has a personal grudge against the candidate. :crazy:
March 17, 2015 at 9:51 am
Gary Varga (3/17/2015)
March 17, 2015 at 7:54 am
Microsoft Team Foundation Server has a feature in it's source control where you can compare one version of a source file to another past version, and it will highlight all...
March 13, 2015 at 1:48 pm
SQLRNNR (3/13/2015)
I don't necessarily take issue with a comment that states the...
March 13, 2015 at 12:49 pm
Viewing 15 posts - 4,036 through 4,050 (of 6,026 total)