Viewing 15 posts - 826 through 840 (of 938 total)
We enforce RI using the check constraint with UDF's. This UDF is common, which takes two values, the key type (example CARD_TYPE) and value (VISA, MASTER etc), queries the lookup table returns...
September 28, 2005 at 9:29 am
That depends entirely on what you specifically mean by "customer configurable coded attributes". Are you talking about a couple of columns for which the customer defines the valid values? If...
September 28, 2005 at 9:15 am
Mike, you can add columns to a table in Enterprise Manager without too much fuss at all. Just add them at the end. Then EM will just use the...
September 27, 2005 at 5:15 pm
As soon as I read this article, something inside me said "Lawd, I hope Joe don't see this!"
Seriously though, Joe's right. This table design offers zero benefits to outweigh the complexity...
September 27, 2005 at 4:44 pm
Nice article. You might want to mention that EM should not be used to modify tables that are already populated. EM completely re-builds and re-populates the table from scratch for...
September 26, 2005 at 8:00 am
Thanks for the feedback.
To avoid SQL injection: always validate user input, use parameterized queries and sp_executesql, and limit the permissions of the ASPNET user on the server and within the database.
There...
September 21, 2005 at 10:57 am
Thanks for the feedback!
Keep in mind though that even though in the example I gave all data is passed as VARCHAR's which need to be quoted, not all data passed...
September 21, 2005 at 10:52 am
Thanks for the feedback. I had read that MD5 collisions were becoming more common, but hadn't realized that NIST had declared it unsecure. SHA-256 and SHA-512 are good alternatives for...
September 21, 2005 at 10:47 am
For data warehousing and some other specialized applications, de-normalization might be the correct move. And you're right, trying to fix a broken schema after the fact can be a serious...
September 19, 2005 at 3:01 pm
<quote>I'm really thinking about putting together a series on interviewing… how to prepare, what to know, what not to know, etc. It seems kinda like a no-brainer, but the...
September 19, 2005 at 2:53 pm
"Gee, naive as I may be about SQL design (I can do the day-to-day admin stuff pretty well) I had thought that the database was about the data and making...
September 19, 2005 at 1:56 pm
I'm sure someone will write an article, but here's a shortlist to tide you over:
September 19, 2005 at 10:27 am
The first indication that something is wrong with an applicant is that he rates himself "11" on a scale of "1 to 10". That's a clear indication that they don't...
September 19, 2005 at 10:15 am
Personally I'd prefer the honest approach taken in this article. As an applicant I would take the specific reasons why I was not selected and try to build on that. ...
September 19, 2005 at 9:57 am
The ASCII character codes for the control characters (Start A, Start B, etc.) are not standardized. The standard defines the relationship between the generated barcode and the barcode reader/scanner. The...
September 14, 2005 at 8:57 am
Viewing 15 posts - 826 through 840 (of 938 total)