Viewing 15 posts - 691 through 705 (of 1,162 total)
Definitely agree with Kevin to patch up if it isn't already.
Other than that, there's no "generically make everything run faster" option.
C'mon, let's see the execution plan! π
September 1, 2011 at 6:29 am
Looks like this is something that's been fixed in SQL 2005 - I've played around with compatibility and you can't change it.
Technically speaking, SQL 2000's answer was incorrect as the...
August 31, 2011 at 7:56 am
As far as I'm aware, Weblogic just uses JDBC drivers - these support pretty much any version of SQL Server. I seriously doubt that there's anything fundamentally incompatible about it,...
August 31, 2011 at 6:15 am
I'm not sure you'd be able to do that accurately, it depends on a lot of factors. It's may not be IOPS dependent as much as overall throughput as it...
August 30, 2011 at 9:22 am
I'm not sure there's an easy way to accurately assess it other than try it in a test environment. It's going to be an intensive operation as not only will...
August 30, 2011 at 8:18 am
Doesn't surprise me.
Synchronous mirroring to a different location means that a transaction can't be commited until the transaction has been received at the other end and it has signalled...
August 30, 2011 at 4:09 am
No. Easily tested, scope_identity() will not return the identity of another procedure in the same session:
CREATE TABLE test(col1 INT IDENTITY(1,1))
GO
CREATE PROCEDURE proc_1 AS
INSERT INTO test DEFAULT VALUES
GO
CREATE PROCEDURE PROC_2 AS
EXEC...
August 25, 2011 at 9:19 am
Nice blog post Wayne - shame the performance doesn't look great at the moment for a common use-case. Hope they sort it out before RTM - I don't recall the...
August 25, 2011 at 8:17 am
I'm not sure client-side validation is a good fit for this problem as it needs comparison with other data that's in the database. Even if you went to the hassle...
August 22, 2011 at 6:13 am
There's a link here about the remnants of a 32-bit install of SQL Server that was causing issues:
Although if you've re-imaged and are still having issues, I'd say it's time...
August 22, 2011 at 3:15 am
Does the event viewer post any other error messages than the one above?
Anything in the SQL Server log directory?
You can start the service from the command line with a -c...
August 19, 2011 at 2:20 am
That doesn't look like the full list referenced on the link I provided, but can't you just add the service account into the predefined local group that was created by...
August 9, 2011 at 8:10 am
That sounds like a well planned change π
The SQL Server Setup creates groups with the appropriate privileges, this article lists what those individual permissions are. Obviously it may also depend...
August 9, 2011 at 2:06 am
Ah, sorry, misunderstood. Well, it depends on how you're partitioning your data across the 3 seperate volumes I guess, but it does sound like your drives are underscaled for the...
August 3, 2011 at 2:03 am
Your disk configuration is well below par for dealing with TB+ databases (I'm confused how you have a 3 disk mirror in any case), but 7.2k hdd's without any striping...
August 2, 2011 at 11:31 pm
Viewing 15 posts - 691 through 705 (of 1,162 total)