Viewing 15 posts - 6,526 through 6,540 (of 14,953 total)
CirquedeSQLeil (10/15/2010)
GSquared (10/15/2010)
Then I realized it would contain at least...
October 15, 2010 at 12:23 pm
A server-side trace (that's what it's called) sounds like it'll do what you need. Definitely filter it, and manage the disk space in it.
There's a function, fn_trace_gettable, that will...
October 15, 2010 at 12:16 pm
That'll make a difference! Glad you worked it out.
October 15, 2010 at 12:10 pm
Tim Parker (10/15/2010)
I personally feel that I get discriminated against because of my time in grade as a...
October 15, 2010 at 12:06 pm
GilaMonster (10/15/2010)
GSquared (10/15/2010)
On the other hand, someone can be a very skilled DBA without being a skiller performance tuning expert. "DBA" covers WAY too much scope these days.
That's...
October 15, 2010 at 11:42 am
First, a query is a query is a query. SQL Server will store execution plans for queries that use views just as readily as it will store the ones...
October 15, 2010 at 11:41 am
homebrew01 (10/14/2010)
I should clarify, that TableA that data is being selected from...
October 15, 2010 at 11:35 am
Break the problem down into component parts.
Try the query without the Group By.
Try the query without the For XML.
And so on.
Pull execution plans in SSMS for each version, including the...
October 15, 2010 at 11:27 am
Or do the really simple thing and create a calendar table with all your rules built in, and just select counts from that. It's fast, easy, and gets the...
October 15, 2010 at 11:23 am
Then I've seen that behavior before. The computer with Access on it is probably losing its domain credentials for whatever reason. Possibly a network issue, possibly something with...
October 15, 2010 at 11:22 am
Yesterday, whilst commuting, I was actually thinking about setting up a video camera on my dashboard, and blogging the "good parts".
Then I realized it would contain at least as much...
October 15, 2010 at 11:19 am
Change it to:
OR p.perf_no in (6352,6353)
AND exists
(select 1
from t_sub_lineitem s2
join t_lineitem l2 on s2.li_seq_no=l2.li_seq_no
join t_order o2 on l2.order_no=o2.order_no
join t_perf p2 on l2.perf_no = p2.perf_no
where o2.customer_no = o.customer_no
and...
October 15, 2010 at 11:14 am
Honestly, if I really needed to audit what a DBA does, I'd probably set up some sort of 3rd party auditing tool outside the scope of the database/RDBMS. DBAs...
October 15, 2010 at 11:09 am
Depending on the pattern of the When...Then statements, you might be able to use some basic string manipulation on it to turn it into an insert statement. But it...
October 15, 2010 at 11:06 am
Sounds like a good interview technique. I prefer a hands-on approach to technical interviews over a "can he regurgitate BOL" technique.
And no, I'm not at all surprised about your...
October 15, 2010 at 11:01 am
Viewing 15 posts - 6,526 through 6,540 (of 14,953 total)