Viewing 15 posts - 56,191 through 56,205 (of 59,067 total)
It depends... what kind of string is it??? CSV, Fixed Field, XML, Quoted CSV, or ????
June 7, 2007 at 4:39 pm
Close... I'd check just for dupe ID_Num's first... the rest of the columns are ancillary in nature...
Or, just take out the ID_Num to see if the same person has been...
June 7, 2007 at 1:38 pm
Are you looking at sp_Who2 during these times? You need to find the code or process that's grabbing resources and see if you can change it.
June 7, 2007 at 6:45 am
A function call is limited to the 3 part naming convention... See Books Online.
June 7, 2007 at 6:04 am
Not sure this is what you are looking for... but I don't think you find a more dramatic difference...
DECLARE @Counter INT --Just a loop counter
DECLARE @BitBucket INT --Just...
June 7, 2007 at 5:50 am
Perhaps I'm doing something wrong, Joe... the T-SQL example you posted (repeated below), generates the sequence of numbers that follows that and repeats... not random at all...
CREATE TABLE...
June 7, 2007 at 5:16 am
Different take... traded in a little bit of the simplicity and speed of Lynn's and Jason's methods for some flexibility so far as a programmable interval and the ability to...
June 6, 2007 at 7:46 pm
--===== If you have a table that looks like this... CREATE TABLE yourtable ( RowNum INT IDENTITY(1,1) PRIMARY KEY, SomeString VARCHAR(100) NULL ) GO --===== Add a constraint that looks like this ALTER...
June 6, 2007 at 4:54 pm
Understood.... just wanted you to know that the computed column would do the same and is just about as fast (can even be indexed if the formula is deterministic)... it...
June 6, 2007 at 7:22 am
What is the Primary Key for the Orders table and where does Code come from?
June 6, 2007 at 7:14 am
Probably stating the obvious, but now you have a column that can get out of sync with the date if the dates change. It would be better if you removed...
June 6, 2007 at 7:02 am
Nicely said and I agree 100%! Only thing I wouldn't do is change the Temp Tables back to Table Variables... Q3 and Q4 in the following link are the reason...
June 6, 2007 at 6:26 am
Oh yeah... been thinking about that. Upgrading at work is going to be a bugger and rumor has it that MS is going to stop "supporting" 2000 sometime in August...
June 6, 2007 at 6:19 am
Viewing 15 posts - 56,191 through 56,205 (of 59,067 total)