Viewing 15 posts - 316 through 330 (of 489 total)
Lowell (11/4/2010)
He may not be familiar with sp_help [TableName]...
November 4, 2010 at 1:44 pm
homebrew01 (11/4/2010)
Carlton Leach (11/4/2010)
This must be a pi$$ takeOr a troll
I don't think so. I looked at the users previous posts (click on the user, select "Find all member's posts")...
November 4, 2010 at 1:14 pm
raistlinx (11/3/2010)Depending on what kind of a RAID environment you may be working in (often beyond your control) it can take a lot longer than that. So let's suppose...
November 3, 2010 at 2:40 pm
raistlinx (11/3/2010)
Because of the time it takes to create a new clean DB. Often times in developement you may want to clean out the tables quickly to have a fresh...
November 3, 2010 at 1:34 pm
HoustonFirefox (11/1/2010)
.....
Why can't...
November 1, 2010 at 3:53 pm
Probably SQL is using a cached query plan. Try doing a DBBC DROPCLEANBUFFERS.
Note that this may impact performance while new query plans are built and cached. You can get the...
November 1, 2010 at 3:12 pm
I would almost never use DB Snapshots for reporting, there are a lot of better options and a lot of restictrions with snapshots.
Far better to use replication. This allows you...
October 20, 2010 at 6:28 pm
Tara-1044200 (10/20/2010)
So far i used to restore all databases onto development but i dont want to continue this anymore due to the time involved.
How often are you doing this and...
October 20, 2010 at 2:23 pm
Raghavender (10/18/2010)
Yes, we did that but no use.We have set up the Profiler, but no use.
This doesn't make sense, if you put a filter on the table and select the...
October 19, 2010 at 5:30 pm
The execution plan won't return any user data, at most it will return some tables and index info.
Also seeing the code for the underlying view makes a big difference. They...
October 19, 2010 at 4:49 pm
sqldba_icon (10/19/2010)
pavan_srirangam (10/19/2010)
Run both queries and include exec plans and see you will find...
October 19, 2010 at 2:47 pm
Nullable columns can cause problems for queries like this. NULL is an undefined value, think of it as "noise". This means SQL can't do an EQUALS test on it. To...
October 19, 2010 at 2:28 pm
premkuttan.lakshmanan (10/19/2010)
October 19, 2010 at 1:31 pm
As per the clustering key width, it would be 17 bytes instead of 8, it's not that bad (is it?).
..
Also, the table is partitioned (6 partitions) on Receiving_Number, but just...
October 19, 2010 at 1:21 pm
Unless the user suspects you are tracing them and runs:
SELECT * FROM :: fn_trace_getinfo(0)
and then runs:
SELECT * FROM :: fn_trace_getfilterinfo (trace_id),
They won't see the trace.
You could block their execute rights...
October 18, 2010 at 8:54 pm
Viewing 15 posts - 316 through 330 (of 489 total)