Viewing 15 posts - 1,516 through 1,530 (of 2,612 total)
I have done the same Jack - triggers can bee good for auditing because I usually want them to be part of the original transaction and like them to be...
May 21, 2008 at 10:59 am
Specifying the use of NOLOCK on every query is a mistake made by a lot of people that simply do not understand what the problems of dirty reads can be.
It...
May 21, 2008 at 10:55 am
In addition, if your "other" queries only needed the two specified columns, creating a "covering index" - which is an index that completely encompases the fields your query will need...
May 21, 2008 at 10:47 am
Where are you putting if the "Run Balances"? You are calculating this in a derived column? A derived column executes once per row in the data flow and...
May 21, 2008 at 10:43 am
That's probably a reasonably good starting position - "How can I accomplish this without a trigger?". I would put this right along with "How can I accomplish this without...
May 21, 2008 at 10:30 am
A SQL 2005 license is required to upgrade from SQL 2000 to SQL 2005. There are some upgrade paths - talk to your software vendor.
May 21, 2008 at 10:23 am
Install the Oracle client - I think the 8.4 client and newer includes a complete OLEDB provider. They are not 100% OLEDB compliant (even the 10g client is not).
You...
May 21, 2008 at 10:22 am
You will probably not be able to copy a 40gb file over your WAN. For initialization, I would suggest you do a backup and FedEx it. While it...
May 21, 2008 at 10:07 am
Ok, so the connection pool error is related to having used up all of the available connections in the pool. Yes, this is caused by not closing connections in...
May 21, 2008 at 8:52 am
GGKK - you have most likely over-partitioned your cube. You should look at the project REAL documentation for some tips about partitioning. With only 5 million rows per...
May 20, 2008 at 11:31 am
They are bosses because they don't know how to do the work...
Create another table to keep track of the next "CustomerID". Or, if you have a customer table and...
May 20, 2008 at 5:13 am
You should not have "too many" open connections from connection pooling. If you have a central application server that connects to the database (which I assume you have because...
May 20, 2008 at 5:07 am
Bummer - no replies yet.
I'll reply myself because I think I found something that is going to work. If anyone sees an issue, please let me know.
At first, I...
May 19, 2008 at 1:57 pm
If you have a measure that is the number of minutes, the sum of this measure by date (assuming you have a date dimension) should be the number of hours...
May 19, 2008 at 1:11 pm
Hey - don't attack me, I said it was a bad idea, I just figured I would give an example in which it could actually help something.
As far as the...
May 19, 2008 at 12:50 pm
Viewing 15 posts - 1,516 through 1,530 (of 2,612 total)