Viewing 15 posts - 1 through 15 (of 22 total)
SQL Azure is the latest major investment in database scaling technology. There is also upgraded peer replication that adds geo-distributed synchronized sql database capability as well.
March 5, 2010 at 2:15 pm
I believe the implication is that Hibernate, which is a RedGate product (and they are known for their performance oriented applications), is more efficient with its memory management than SSIS,...
March 5, 2010 at 12:37 pm
It just occurred to me that you should use a CTE...select the rows from tha small tables. This might keep everything in memory..not sure.
March 5, 2010 at 2:52 am
Then, with multiple connection/update interfaces, you are stuck with triggers which evaluate every update to determine whether it should be allowed or not.
Hmm...maybe with a snapshot you could let...
March 5, 2010 at 2:33 am
The duration of the 'outage' on any Windows cluster is the sum of the time it takes to detect a failover is required plus the time it takes to unmount...
March 5, 2010 at 2:04 am
Adding a second instance with separate resources to a cluster is a standard operation so...to the last post...nothing unusual or difficult.
To the original post...your end configuration would be exactly the...
March 5, 2010 at 1:46 am
Stopping the cluster service on the active node is probably as gentle a method as you will find. You can do that via the cluster node /stop command or a...
March 5, 2010 at 1:24 am
To second GilaMonster's comment...we cannot exempt ourselves as DBAs from the rules we apply to Developers...ALWAYS have a rollbadk plan...NEVER make changes without protection.
March 5, 2010 at 1:12 am
You can also use the CAST statement since you wanted a DATE data type...not VARCHAR with an implicit conversion
cast(<datetime column> as date) as DateOnly
March 5, 2010 at 1:00 am
It looks like it has to be deployed on a SQL 2008 instance. The collection sets include scheduled SSIS packages which access objects like dm views so there is a...
March 5, 2010 at 12:47 am
It is very possible he is right. Set up representative tests and prove it one way or the other. Be sure to include development effort and package creation in the...
March 5, 2010 at 12:21 am
Can you split your data into two tables with a UNION view over both? One table, for 'open' items can be updated, the other for 'closed' items has an INSTEAD...
March 5, 2010 at 12:08 am
This could be the result of a very light workload and very small number of queries executing on the test server...not enough memory pressure to force the query plan and...
March 4, 2010 at 11:37 pm
I have no experience with this but here are my thoughts..not in any particular order...
First...network bandwidth. You have not stated whether the servers are in the same physical location or...
March 4, 2010 at 11:28 pm
You can make something of an educated guess if, over time, you establish a relationship between 'query cost' as reported in the execution plan, and the actual time it took...
March 4, 2010 at 11:05 pm
Viewing 15 posts - 1 through 15 (of 22 total)