I cannot fix the rights depending on customers server...
when i create a table dynamicly with ASP.NET for MS SQL 2000, should I use :
CREATE TABLE [dbo] .[Component]
or
CREATE TABLE [Component]
-------
[id_Component] [int] IDENTITY (1, 1) NOT NULL ,
or
[id_Component] [int] IDENTITY (1, 1) COLLATE French_CI_AS NOT NULL ,
-------
shall I add COLLATE French_CI_AS to all columns ?
thank youIf you don't explicitly specify the collation, the system will use the database collation as the default.
It's a best practice to be explicit for DDL/DML. So, [dbo] and [COLLATE] should be specified.|||thank you !
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment