Viewing 15 posts - 811 through 825 (of 938 total)
IMAGE, TEXT and NTEXT data types are stored and accessed differently from other data types. Basically they are stored with a 16-byte binary pointer. This means that access to the...
December 7, 2005 at 8:46 am
I wouldn't recommend it. SQL Server will not know how to decrypt and run your stored procedure if you tried to encrypt it using this package. "WITH ENCRYPTION" is the...
December 7, 2005 at 8:10 am
I reviewed the barcode TTF for Code 128, and it appears that the codes for "C" and "F" were not saved correctly. I suspect it had something to do with...
November 29, 2005 at 8:01 am
Hi Greg,
Thanks for the feedback. There are two issues with trying to decrypt data which has been encrypted using another package (like the .NET System.Security.Cryptography namespace classes):
You've already encountered the...
November 20, 2005 at 7:38 pm
Here's another version of the Easter Calculation algorithm:
http://sqlservercentral.com/cs/blogs/michael_coles/archive/2005/07/16/49.aspx
And something for calculating "floating" American holidays:
http://sqlservercentral.com/cs/blogs/michael_coles/archive/2005/07/17/52.aspx
November 3, 2005 at 9:14 am
Hi Phoebe,
I don't have access to a SQL 7 installation to see what would be required to make it work on SQL 7. The XP's themselves are standard XP's based...
October 27, 2005 at 2:10 pm
If you want to "appeal to authority", check out Celko's SQL Style book. He gives a well-rounded discussion of his interpretation of ISO naming convention standards.
October 3, 2005 at 8:55 am
Sorry for the misunderstanding. As I pointed out in another post, if you are using the strDescription column as any part of the PK, then you will be duplicating the...
September 30, 2005 at 10:28 pm
Sorry about the confusion. Yes I am talking about using the column strDescription as the PK, or even as part of the PK.
If we imagine a single PK in the...
September 30, 2005 at 10:17 pm
As long as we're beating the dead horse, might as well break out the shotgun:
I'm thinking along similar lines as you with the declaration of the primary key. We obviously...
September 30, 2005 at 10:27 am
What columns unqiuely identify each row of the generic lookup table?
Per the implementation in the article I can add the row (16, 'CA', 'CALIFORNIA', 'Postal.State') even though the row (16,...
September 30, 2005 at 7:54 am
Notice that the name "Automobiles-to-Zipcodes" requires a quoted identifier. See Joe Celko's SQL Programming Style, Chap. 1.1.2 ("Avoid All Special Characters in Names") and 1.1.3 ("Avoid Quoted Identifiers").
September 28, 2005 at 2:43 pm
Yeah, SQL Server generates some pretty good change scripts that you can copy and paste into QA; but if you run the changes directly from EM you can end up...
September 28, 2005 at 12:19 pm
Not even with Indexed Views which speaks volumes about their "usefulness".
Like I said, dynamic SQL and modifying the tables themselves are a way to do this and maintain proper DRI.
And...
September 28, 2005 at 12:14 pm
One solution might be to create views which could be altered later if the user wanted to change attribute sets, or you could dynamically generate SQL queries. You can ensure...
September 28, 2005 at 9:42 am
Viewing 15 posts - 811 through 825 (of 938 total)