Viewing 15 posts - 16 through 30 (of 602 total)
Hi Aaron,
Sorry about the confusion. I was generalizing perhaps a bit too much. You are correct in your belief that the size of the transaction log should not create...
October 30, 2007 at 6:25 am
Aaron Sentell (10/28/2007)
October 29, 2007 at 2:09 pm
Sorin Petcu (10/19/2007)
What is means Bookmark Lookups (see attach) ? I have some big values for its.
The bookmark lookup happens when the qurey processor uses an index to find the...
October 19, 2007 at 1:03 pm
btw. I never use buffer cache hit ratio as an indicator - I prefer page life expectancy.
Seconded. I can imagine too many scenarios where the hit ratio might...
October 17, 2007 at 8:31 am
You can certainly get away with using RAID 5 for your data files. I've done it in the past, and have not come across a situation where there was...
October 17, 2007 at 7:35 am
Another good trick for cursors:
Declare cursor foo....
Declare @someVariable INT
open foo
While (1=1)
BEGIN
Fetch foo into @someVariable
IF @@Fetch_Status <> 0 BREAK -- no more data
--do something here
END
This eliminates the need for two...
October 16, 2007 at 2:08 pm
I'm not pointing out anything other than the fact that the order in which the rows are added changes the result, thus suggesting that addition of floats is not associative....
October 16, 2007 at 10:04 am
I just tried a little experiment myself:
create table foo (
ID int identity,
X float)
set nocount on
declare @ctr int
select @ctr = 0
while @ctr < 1000
BEGIN
insert foo (X)
select rand()
select @ctr= @ctr +...
October 16, 2007 at 9:15 am
Colin,
One more question. Can you attempt the float sum again, but this time specify the ordering of the rows? I ask because an unconfirmed source (wikipedia) seems...
October 16, 2007 at 8:47 am
Hi Colin,
Are there any differences in CPU, O/S, or SQL build between the two boxes?
October 16, 2007 at 8:10 am
I've seen a financial system that used floats as surrogate primary keys. I'm not sure what was going on there, but I assume that the database was converted...
October 16, 2007 at 6:47 am
The backup extension doesn't matter to SQL server, but it might matter to your hosting company's SQL server interface.
You can try renaming the backup file so that is has...
October 9, 2007 at 6:44 am
So, Bob, should we buy or should we sell?
October 3, 2007 at 7:16 am
Hello,
I've never done this. All of my transactional publications are not partitioned. There should be a way to do what you want, but I'm not sure how involved...
October 3, 2007 at 7:10 am
The procedure is sp_scriptdynamicupdproc. not ...updateproc.
October 3, 2007 at 6:33 am
Viewing 15 posts - 16 through 30 (of 602 total)