Viewing 15 posts - 54,616 through 54,630 (of 59,078 total)
That information is available in Books Online ("Transact-SQL Help" under Help button in Query Analyzer). Lookup "Execution Plan pane" in the index...
October 13, 2007 at 10:13 am
If you're asking how long we think it should take for you to process the 1.7 million rows that your are... we have no clue because we don't know what...
October 13, 2007 at 10:10 am
You could have also used TRUNCATE table which resets the ID column back to 1.
But, even that doesn't "Fix" it... why are you using a cursor? Perhaps if you...
October 13, 2007 at 9:50 am
NEWID() won't guarantee it... it's only guaranteed at the full 32 characters.
What's wrong with this?
SELECT CAST(CAST(0x0013020061675035 AS BIGINT)+1 AS VARBINARY)
If you find the largest item in the column, just add...
October 12, 2007 at 10:20 pm
I only see the column names being returned... no data types...
October 12, 2007 at 10:04 pm
Notice, the answer above was almost as short and useful as the question... if you want a real answer, could you provide just a wee bit more info about what...
October 12, 2007 at 9:45 pm
If you want something slick to split addresses and validate them at the same time, look into a product called "ZP4".
October 12, 2007 at 9:36 pm
Christopher Klein (10/12/2007)
Say I have a stored procedure that builds up a #temp...
October 12, 2007 at 9:26 pm
What datatype is the column, really? Is it TEXT, VARCHAR, NVARCHAR, or ???
October 12, 2007 at 9:22 pm
Thought I'd post something folks can play with... could easily be turned into a proc... can be easily modified for an Insert/Values instead of an Insert/Select. With a little forethought,...
October 12, 2007 at 9:14 pm
Nigel Rutter (10/4/2007)
SELECT @InsertQuery = @InsertQuery + column_name + ',' from ##Temp_Generate
Hope Jeff M doesn't see...
October 12, 2007 at 8:32 pm
dobrzak (4/6/2006)
SELECT object_name(id), rows
FROM sysindexes
WHERE indid...
October 12, 2007 at 8:11 pm
SELECT @@VERSION
Then, check the Microsoft site for the build number...
October 12, 2007 at 7:54 pm
Viewing 15 posts - 54,616 through 54,630 (of 59,078 total)