Viewing 15 posts - 511 through 525 (of 6,486 total)
If I had to guess - the person who wrote this started out writing queries in Access. It prefers to nest joins inside other joins, e.g.
select column
from A
...
May 14, 2015 at 8:49 pm
Sorry to give the generic answer, but - "it depends". In my mind - this mostly depends on how your organization accesses the DB resources and modifies data. ...
May 14, 2015 at 1:55 pm
David.Poole (5/12/2015)
I get not wanting to be impactful, but then what's the point of auditing?
It's a blame system with proof:hehe:
mine's a blame avoidance system with proof, but yep -...
May 12, 2015 at 7:50 pm
Jeff Moden (5/11/2015)
Gary Varga (5/11/2015)
Jeff Moden (5/10/2015)
May 11, 2015 at 3:38 pm
It's actually "working as designed". The behavior has to do with sub-queries, in that the subquery has access to the data from both the tables named in the subquery...
May 11, 2015 at 10:54 am
Are you expecting that the rowID's be consistent based on the physical order within the given file? Unfortunately you would need to set up the ordering mechanism to KEEP...
May 6, 2015 at 7:24 pm
Steve Jones - SSC Editor (5/5/2015)
Eric M Russell (5/5/2015)
May 6, 2015 at 8:34 am
only word of caution would be to check where the BEGIN TRAN is. I've seen a few doozies where the "rollback" is in a child/subprocedure and is intended to...
May 1, 2015 at 10:19 am
You can also prevent folks from "jumping out" of the app.
There are a few tricks which could make it tough for someone to get to the linked tables,...
April 27, 2015 at 3:52 pm
Steve Jones - SSC Editor (4/24/2015)
SELECT customers.name,
SUM( case when year(date) = 2014 then unitprice*qt else 0 end) AS total_2014,
SUM( case when...
April 24, 2015 at 2:54 pm
Brandie Tarvin (4/24/2015)
GilaMonster (4/24/2015)
April 24, 2015 at 10:32 am
Clearly - using the cascade on the person table will not be what you want (delete would take out the person itself). If the separate table isn't workable either,...
April 23, 2015 at 5:38 pm
or HL7 (the old-style ones that is).
April 23, 2015 at 5:32 pm
You have a bit of a normalization issue, which is complicating your issue. As DJJ pointed out, as of now with the structure in place you have to maually...
April 23, 2015 at 12:23 pm
mistylove98 (4/23/2015)
I get this error when i try it that wayMsg 241, Level 16, State 1, Line 1
Conversion failed when converting date and/or time from character string.
Just guessing, but could...
April 23, 2015 at 11:50 am
Viewing 15 posts - 511 through 525 (of 6,486 total)