Viewing 15 posts - 13,126 through 13,140 (of 15,381 total)
My guess is you have carriage returns char(13) or line feeds char(10) in your original data.
January 31, 2012 at 7:39 am
Well surely the companies have some additional proprietary logic for them to generate but they do have to pass Luhn. This is why those numbers are generated by the company....
January 31, 2012 at 7:34 am
Any chance you can just roll your own? I can't imagine the performance burn of a cursor calling a stored proc 100k times.
January 30, 2012 at 1:55 pm
If it were me I would consider writing my own version that can process more than 1 row at a time. I know what you mean when you have stuff...
January 30, 2012 at 1:31 pm
If some 3rd party app can't handle a single quote in the data then the third party vendor should deal with it. It really boils down to what sql is...
January 30, 2012 at 1:27 pm
You really should not do this in a loop. Take a look at the link in my signature about a string splitter. It will blow the doors of any kind...
January 30, 2012 at 1:09 pm
Yes they should be allowed. The system should NEVER NEVER NEVER change the data. The job of sql is store and retrieve data. If there are challenges to retrieving that...
January 30, 2012 at 1:08 pm
pseudocode...
select from Class
join course
join student
where class_grade = somevalue
January 30, 2012 at 10:15 am
J Livingston SQL (1/30/2012)
there are three tabs in the spreadsheet....all have datapls can you clarify further.
ROFL!!! I looked at this spreadsheet and was wondering why there was only 1 table.
This...
January 30, 2012 at 9:58 am
The problem with not posting scripts is I have no idea what datatypes you are working with and I have to spend time download and importing a spreadsheet.
And I still...
January 30, 2012 at 9:56 am
Simon_L (1/30/2012)
January 30, 2012 at 9:50 am
I agree with Jack. Just create your user object and populate on successful login and toss the User object into the session (then there is no need to query it...
January 30, 2012 at 9:42 am
I always get a bit nervous when I see people asking for the list of keywords that they intend on using as a lookup to prevent sql injection.
January 30, 2012 at 9:28 am
Dev (1/30/2012)
There are predefined algorithms for generating & validating credit / atm cards. IIRC, Each financial institute has only one predefined & unique algorithm for their use.
Actually...
January 30, 2012 at 9:22 am
What datatype is the column?
January 30, 2012 at 9:03 am
Viewing 15 posts - 13,126 through 13,140 (of 15,381 total)