Viewing 15 posts - 226 through 240 (of 302 total)
Fred, I think you may have seen this a) because importing entire tables, or b) importing very large subsets of tables, or c) because of something specific to your Oracle...
March 10, 2005 at 9:56 am
Ramesh, you are not correct. Indexes on the underlying tables will be used, there is nothing in the view to "table scan." You can see this for yourself in query...
March 9, 2005 at 10:34 pm
I like the view idea better than explicitly referencing objects in other DBs.
But to me the idea of having to grant my users rights to the underlying tables in...
March 9, 2005 at 8:33 am
I agree on smalldatetime for this.
And I would use GMT in your tables. Does not matter what your server time or timezone is, as long as it is accurate. You...
December 27, 2004 at 2:15 pm
I enjoyed this article, good description of problem solving exercise.
But I don't think the title or any focus on isnull() is right.
Assume some other function was used instead of isnull--maybe...
August 1, 2004 at 3:30 am
Checked history for CHECKDB on one of our 6.5 boxes. DB is 25GB with about 9GB space free. Not sure if that means CHECKDB only had to check 16GB or...
August 1, 2004 at 3:16 am
In addition to the problem with syntax of line 9 actually being wrong, I feel the answer choice uses poor wording: "return value of the first execute statement" and "return value...
July 26, 2004 at 11:05 am
Much less performance impact than in any previous version of SQL Server.
For me, I think the biggest impact is simply competition for I/O bandwidth. I never see any blocking due to the...
July 21, 2004 at 4:39 am
Good stuff. To para #3 I would add "and unscheduled jobs."
I've been burned by someone else either removing or disabling the schedule of a regularly-scheduled job. At first glance you...
June 14, 2004 at 8:13 am
Bad question, I think should be invalidated.
I followed steps exactly as they're stated, and get error as everyone else. "Get an error & no backup is performed" was not one...
June 10, 2004 at 11:40 am
I don't have working example, but have done this before in TSQL.
Use sp_OACreate 'SQLDMO.SQLServer', followed by sp_OAMethod with 'Connect' to attempt to connect to the remote/linked server. If the...
June 1, 2004 at 2:26 am
Slow because pulling 1 row at a time (need to sift through working table 675k times), and then (I think) pulling the data into an external program (the ADO recordset?)...
June 1, 2004 at 1:25 am
In your scenario, there is no lock conversion. S lock is obtained, then released when SELECT is done. UPDATE brings its own new locks. But there is no conversion, no deadlock...
May 19, 2004 at 12:29 pm
S lock is released before the SET stmt.
You can see this for yourself. Within tran, at any point where you'd like to check what locks exist add this code:
exec...
May 19, 2004 at 11:38 am
doh!
Need to wrap sum(...) or (select...) within isnull(), e.g.
select isnull((select sum(Amount)
from AR_Transactions
where Customer_Number = @c), 0) +
isnull((select sum(Amount)
from AR_Post_Dates
where Customer_Number = @c), 0)
May 19, 2004 at 10:54 am
Viewing 15 posts - 226 through 240 (of 302 total)