Viewing 15 posts - 151 through 165 (of 497 total)
It looks like the below query has the same kind of performance between the dev and the test servers:
declare @count int
declare @val nvarchar (100)
set @count = 1
While @count <= 1000
begin
SELECT...
March 15, 2010 at 9:06 pm
Sorry, I got one thing wrong here, the execution time is about the same for 5 records on both servers if I use:
SET STATISTICS TIME ON
SET STATISTICS IO ON
If I...
March 15, 2010 at 8:40 pm
Paul White (3/6/2010)
There's a faster method than that in 2005 (and I don't mean CLR):
USE tempdb;
GO
IF OBJECT_ID(N'tempdb..#Binary', N'U')
...
March 9, 2010 at 3:48 pm
Jeff Moden (3/4/2010)
Roust_m (3/3/2010)
I've posted it already: Post #876546
I saw that and didn't see the function being used in the code and figured it was an incomplete listing. I...
March 6, 2010 at 3:03 am
I've posted it already: Post #876546
March 3, 2010 at 11:56 pm
Jeff Moden (3/3/2010)
Roust_m (3/2/2010)
March 3, 2010 at 10:25 pm
Jeff Moden (3/3/2010)
CREATE FUNCTION dbo.fn_varbintohexstr...
March 3, 2010 at 10:23 pm
Jeff Moden (3/3/2010)
Roust_m (3/1/2010)
A developer approached me in regards for sys.fn_varbintohexstr function they are using at the moment saying it is slow in production: 60 seconds for 15k records...
March 3, 2010 at 10:22 pm
Another issue we have with this function is that it fails after few days without SQL instance restart. When we restart it it works until SQL Server uses its...
March 2, 2010 at 5:38 pm
Carl Federl (3/1/2010)
Did you check for blocking before restarting SQL Server ?
Yes I did, no blocking whatsoever...
March 1, 2010 at 7:26 pm
The process is a big IS package. I can't post it as it may contain some sensitive information.
However I am wondering why after the instance restart the...
March 1, 2010 at 5:25 pm
I guess you could find out the storage required for data using the data load rate, then double it to account for indexes and then double it again to account...
February 21, 2010 at 6:18 pm
RBarryYoung (2/21/2010)
OK, now I have checked it out specifically. Here is the example that I came up with:
Yep, this one works perfectly. The only thing, I reckon you...
February 21, 2010 at 3:01 pm
Lowell (2/21/2010)
Roust this seems to be working on my sandbox; i was able to create a table with a pk and a uq, and it interrupts the create index statement:
I...
February 21, 2010 at 2:52 pm
Viewing 15 posts - 151 through 165 (of 497 total)