Viewing 15 posts - 35,866 through 35,880 (of 49,552 total)
Hashing is typically a one-way operation. ie the original data cannot be obtained from the hashed value.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 2:51 am
Looks like the clustered index is about as good as you're going to get here. Query needs a few too many columns for a covering nonclustered index to be a...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 2:46 am
The time for that select * is probably a combination of time to get the data off disk and time to get it across the network. Why are you querying...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 2:28 am
Bulk insert, bcp and SELECT INTO are all minimally logged if the database's recovery model is something other than FULL. There are other limitations, check Books Online for the details...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 2:22 am
How was the data put into the 'hashed' form?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 2:20 am
Roust_m (11/12/2009)
Would the data updates affect clustered...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 2:05 am
tsd_suresh (11/12/2009)
Any other alternative method to restore with norecovery ?
Restore with recovery?
Depends what you want to do with the DB. If you're restoring additional backups, then you need to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 2:04 am
guptaajay1985 (11/12/2009)
Directory lookup for the file "e:\as.mdf\as.mdf" failed with the operating system error 2
That doesn't look like a valid filename to me. Double check what it is that you're setting...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 13, 2009 at 1:58 am
Same as T-SQL functions.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 4:21 pm
Trooper09 (11/12/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 4:15 pm
Try RESTORE DATABASE <DB Name> WITH RECOVERY
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 4:13 pm
SQLNewbster (11/12/2009)
I did notice you mentioned clustered and I didn't have either as a clustered index.
A clustered index can't have include columns, just specify the key
I can try...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 1:00 pm
The output of @@Versions confuses so many people. The different colours show what's referring to what.
Microsoft SQL Server 2000 - 8.00.2055 (Intel X86)
Dec 16 2008 19:46:53
Copyright (c)...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 12:53 pm
Those numbers are cumulative. They show the total cpu and the total IOs that the connection has done since connecting. If these connections have been open for a long time...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 12:46 pm
That's an incredibly wide index. What about dropping that and creating a clustered index on
Company_No], [Year_For_Period], [Period]
It's a bit wider than I like for a cluster, but it may...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 12:34 pm
Viewing 15 posts - 35,866 through 35,880 (of 49,552 total)