Viewing 15 posts - 2,611 through 2,625 (of 7,502 total)
have a look at:
"C:\Program Files\Microsoft SQL Server\MSSQL\Upgrade\scptxfr.exe" /s yoursqlserver\instance /d yourdb /I /F c:\yourscriptfolder
December 7, 2010 at 1:27 pm
You can do this with SSMS .
If you browse to the tables overview in the object browser and then select the object browser detail pane, you can sort on e.g....
December 4, 2010 at 12:52 pm
Jack Corbett (12/3/2010)
jason.spangler (12/3/2010)
December 3, 2010 at 7:39 am
dant12 (12/2/2010)
ALZDBA (12/2/2010)
December 2, 2010 at 10:42 am
gaestes (12/2/2010)
December 2, 2010 at 10:37 am
I haven't noticed it would not cleanup the trace def in systraces after the end time.
Tested in SQL2000 / SQL2005 / SQL2008R2 CU4 .... ehm .... yes SQL2008 r1 is...
December 2, 2010 at 7:26 am
Since OP stated order is of importance, maybe a join on col1 helps to restrict the cartesian product as well as the where-clause for nMatches > 5
/* 100%...
December 2, 2010 at 7:15 am
PAH-440118 (12/2/2010)
December 2, 2010 at 5:01 am
You also need to take into account, tempdb will need to be large enough to hold all the working sets data.
/* 100% equal */
Select L.IdNo
...
December 2, 2010 at 3:40 am
Can you post some execution results and timings ? (cpu , elaps, io rates)
Seems to me pulling this kind of stuff into your CLR space could easily blow up your...
December 2, 2010 at 12:56 am
The checksum values themselves are not comparable, with regards to order, >, < !
It's just a hash value, so can only be used in an equation.
But it will be noticeable...
November 30, 2010 at 3:21 pm
You're getting the arithmatic overflow, because checksum generates:
declare @a int, @b-2 int, @c int
select @a=checksum(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16)
, @b-2=checksum(10,2,3,4,5,6,7,8,9,1,11,12,13,14,15,16)
,@c=checksum(14,2,3,4,5,6,7,8,9,10,11,12,13,1,15,16)
-- Which one is closer to @a? @b-2 or @c?
-- I'm getting...
November 30, 2010 at 2:46 pm
did you experiment with CheckSum peristed ( and indexed ) computed columns to detect perfect matches quickly ?
, RwCheckSum as checksum(col1, col2, col3, col4, col5, col6,...
November 30, 2010 at 2:11 pm
GilaMonster (11/29/2010)
Grant Fritchey (11/29/2010)
GilaMonster (11/29/2010)
Greg Edwards-268690 (11/29/2010)
Maybe they want to add some new enhancements.Nope. No new enhancements. I think that a Dec go-live interferes with vacation plans
Exactly! I regularly have...
November 29, 2010 at 9:50 am
GilaMonster (11/19/2010)
GSquared (11/19/2010)
Tell him you have a prior appointment with your Stress Management Professional, which your parole officer insists you attend, after that incident with the katanas...
<evil grin> I'll save...
November 19, 2010 at 8:07 am
Viewing 15 posts - 2,611 through 2,625 (of 7,502 total)