Viewing 15 posts - 7,096 through 7,110 (of 7,597 total)
What is the problem? Do you have NULLs in the the MainZip when it's not present/used?
SELECT D.*
FROM Doctors D
INNER JOIN ZipCodes Z ON
(D.MainZip IS...
October 29, 2012 at 4:41 pm
Don't rely solely on the missing index recommendations from those tables. SQL typically suggests way too many indexes. You need to have someone review all available information before...
October 24, 2012 at 9:40 am
I would have to know the version of SQL to know how to answer this.
For 2008+, you have CDC.
For SQL prior to that, they probably wouldn't like my answer, but...
October 22, 2012 at 2:27 pm
lak.konduri (10/21/2012)
one bookingref have one complaintid,
one complaintid have many bookingreferences,
one complaintid have many categories and one category have many complaintid,
one complaintid have...
October 22, 2012 at 2:22 pm
The seed value -- rather than seed + 1 -- is the identity value that will be assigned to the first row inserted into the table.
So, if you want the...
October 22, 2012 at 2:17 pm
I agree, this is way too big for a quick question.
I'd also be willing to bet that much of what they gave you is objectively not designed very well, if...
October 22, 2012 at 2:04 pm
I'd also suggest changing the:
WHERE recovery_model_desc != 'simple'
to:
WHERE recovery_model_desc != N'simple' AND state_desc = N'ONLINE'
You're just wasting time trying to change the db's recovery model if it isn't ONLINE.
October 22, 2012 at 2:01 pm
Look for books and articles by Itzik Ben-Gan; his stuff on T-SQL is superb.
October 19, 2012 at 5:19 pm
I'm a DBA, so yes I use SSMS to get to all my servers. Indeed, I have groups of servers so that I can run the same command on...
October 19, 2012 at 5:16 pm
The straightforward way is:
SELECT
CASE WHEN column_name = 0 THEN 'FALSE' ELSE 'TRUE' END AS column_name
The "avoid a CASE at all costs" way is:
SELECT
...
October 17, 2012 at 12:46 pm
Grant Fritchey (10/11/2012)
ScottPletcher (10/11/2012)
Grant Fritchey (10/11/2012)
ScottPletcher (10/11/2012)
Grant Fritchey (10/11/2012)
As an aside, the CHAR(2) would be a really poor choice for the first column in a compound key. You'd want to...
October 11, 2012 at 12:40 pm
Grant Fritchey (10/11/2012)
ScottPletcher (10/11/2012)
Grant Fritchey (10/11/2012)
As an aside, the CHAR(2) would be a really poor choice for the first column in a compound key. You'd want to use either the...
October 11, 2012 at 12:25 pm
Grant Fritchey (10/11/2012)
As an aside, the CHAR(2) would be a really poor choice for the first column in a compound key. You'd want to use either the INT or the...
October 11, 2012 at 10:40 am
Here's an alternative:
SELECT u.*, n.ID, n.notes
FROM UserTable u
INNER JOIN Notes n ON
(u.lastaccounttype = 'account1' AND n.account1 = 1) OR
(u.lastaccounttype = 'account2' AND...
October 11, 2012 at 9:55 am
Viewing 15 posts - 7,096 through 7,110 (of 7,597 total)