Viewing 15 posts - 5,131 through 5,145 (of 7,597 total)
CELKO (4/23/2015)
Getting back to check digits, the encoding has to be in a string because the weights are assigned by position. There is no concept of a position in an...
April 23, 2015 at 4:36 pm
CELKO (4/23/2015)
I might need to search by only a single element, particularly the one for English-language. Or to find books by a specific publisher.
The ISBN is atomic; it...
April 23, 2015 at 3:38 pm
I believe the code needs slight corrections to prevent a match on part of the code value rather than whole value, as demonstrated below:
CREATE TABLE #ids(id int, codes varchar(30))
CREATE TABLE...
April 23, 2015 at 2:46 pm
CELKO (4/23/2015)
ISBN is displayed with dashes for human convenience, but it's actually composed of elements .. again, under the rules for 1NF, each of those should be stored...
April 23, 2015 at 1:32 pm
Bill Talada (4/23/2015)
ScottPletcher (4/23/2015)
April 23, 2015 at 12:14 pm
Lynn Pettis (4/23/2015)
ScottPletcher (4/23/2015)
April 23, 2015 at 11:31 am
Stripping out delimiters should never eliminate information from the data. If you need to, you can set a tinyint code that reflects the meaning of the delimiters. I'm...
April 23, 2015 at 11:00 am
If you remove the "AND jh.step_id =0" you can see the steps that have completed.
But "step 0" can't be posted until the whole job completes, since that is the job...
April 23, 2015 at 10:42 am
The step is not posted in sysjobhistory until it completes. If the job is still running, you will get the previous job.
If you need to get only the last...
April 23, 2015 at 10:40 am
DOUBLE DOH! I just noticed I left of the step# check in the code; please add this to the WHERE clause:
AND jh.step_id = 0
That code is checking for the...
April 23, 2015 at 10:11 am
ZZartin (4/23/2015)
ScottPletcher (4/23/2015)
Lynn Pettis (4/23/2015)
ScottPletcher (4/23/2015)
Lynn Pettis (4/23/2015)
CELKO (4/22/2015)
Why are you changing obvious integer data types to character data types?
Please read any book on basic data modelling and look...
April 23, 2015 at 9:46 am
Lynn Pettis (4/23/2015)
ScottPletcher (4/23/2015)
Lynn Pettis (4/23/2015)
CELKO (4/22/2015)
Why are you changing obvious integer data types to character data types?
Please read any book on basic data modelling and look at the...
April 23, 2015 at 9:06 am
Lynn Pettis (4/23/2015)
CELKO (4/22/2015)
Why are you changing obvious integer data types to character data types?
Please read any book on basic data modelling and look at the chapters on scales...
April 23, 2015 at 8:26 am
CELKO (4/22/2015)
How exactly does one compute a check digit on a string-only characters? I don't believe that MC or VISA are spending hundreds of millions of extra dollars on storage...
April 23, 2015 at 8:07 am
Orlando Colamatteo (4/22/2015)
ScottPletcher (4/22/2015)
Orlando Colamatteo (4/22/2015)
ScottPletcher (4/22/2015)
Orlando Colamatteo (4/22/2015)
April 23, 2015 at 8:04 am
Viewing 15 posts - 5,131 through 5,145 (of 7,597 total)