hi,
Could you tell me how to remove the database name from the table's name.
Each time I create a table the database name is automatically prefixed to the name
this is my table definition
Create table Links
(
Id Int IDEntity(1,1) ,
DisplayName Varchar(250) NOT NULL,
Href Varchar(250) NOT NULL,
Tooltip Varchar(550) NOT NULL,
IsVisible smallInt,
[Index] int,
IsEditable smallInt,
IsOnMenu smallInt
)
thanks