Viewing 15 posts - 3,316 through 3,330 (of 10,144 total)
Bhuvnesh (5/28/2014)
and DBA has to KILL any one of transaction ?...
May 28, 2014 at 5:15 am
p.avinash689 (5/28/2014)
I tried the above format but i didnt get what i want to be.
This isn't helpful. As you can see, BWFC now has to ask you a bunch...
May 28, 2014 at 4:48 am
nimalatissa (5/27/2014)
May 28, 2014 at 4:06 am
NULLIF - good catch.
The new query is much more compact and readable than the original, how does it compare in terms of performance?
May 21, 2014 at 8:41 am
UPDATE h SET
Phone1 = CASE WHEN d1.Phone IS NOT NULL THEN NULL ELSE Phone1 END,
Phone2 = CASE WHEN d2.Phone IS NOT NULL THEN NULL ELSE Phone2 END,
Phone3 = CASE...
May 21, 2014 at 7:15 am
-- Read (and aggregate) table variable @Result only once.
-- Note that a row will match more than one filter.
-- Note use of NULL in case expression for averages -
--...
May 21, 2014 at 3:10 am
sql-lover (5/20/2014)
ChrisM@home (5/20/2014)
On phone so long shot - try LEFT REMOTE JOIN ticket.
Got this error:
Msg 1072, Level 15, State 1, Line 22
A REMOTE hint can only be specified with an...
May 21, 2014 at 1:54 am
vasugunda (5/20/2014)
I am a new starter to sql and msbi
Are there anyone who can give me back up when Iam in job
its a bit urgent
and...
May 20, 2014 at 8:59 am
aberndt (5/20/2014)
May 20, 2014 at 6:46 am
bbf.kurd (5/20/2014)
thanks GilaMonster, its correct
select COUNT(*) as [type], [group]from tblname
where group in ('a','b')
Group by [group]
but haw use
where group in ('%a%','%b%')i can use it
WHERE [group] LIKE '%a%' OR [group]...
May 20, 2014 at 5:50 am
Instead of attempting to integrate this control/logging table into an already complex script, try this: write a query which joins the cloning table and the control table, outputting only the...
May 20, 2014 at 3:05 am
Rob Farley has an interesting article here which discusses SARGability of functions on search predicates. One of the functions which doesn't destroy SARGability is CAST(column AS DATE), so your first...
May 20, 2014 at 2:23 am
Why are you using subqueries in the output list instead of joins? You're reading the ticket table three times and the report table twice, instead of once each as you...
May 20, 2014 at 2:11 am
Jake Shelton (5/19/2014)
ChrisM@Work (5/19/2014)
May 19, 2014 at 6:47 am
Investigate all of the tables referenced in this query and list those tables which contain columns [chassis] and [model], making a note of the datatype. You want to make the...
May 19, 2014 at 3:56 am
Viewing 15 posts - 3,316 through 3,330 (of 10,144 total)