Create a table named "States" and make sure the fields "StateName" and
"StateAbbreviation" exist, then run the following statements to insert
all the states.
Insert into States (StateName, StateAbbreviation) values (
'ALABAMA',
'AL')
Insert into States (StateName, StateAbbreviation) values...
more >>
Hello,
I moved my SQL-Server 2000 Database with Backup/Respore to a new
SQL-Server 2005.
Now (a few days after the relocation) I wanted to add a
Fulltextcatalog, but it threw an error saying
-----
Die Volltextsuche ist f=FCr die aktuelle Datenbank nicht aktiviert.
Aktivieren Sie sie mit...
more >>
Hello:
My Electronic Document Storage software uses a "MS SQL Server Table
Lookup" feature to simplify document indexing. Although we do have
SQL Server database installed, the indexing information we need is
currently being maintained in an Access Database.
It is my understanding that it...
more >>
As mentionned in the subject I would like to automatically insert a
primary key in table1 when I insert a new foreign key in table2. Here
are the examples:
/******************************** Create Tables
********************************/
CREATE TABLE TEST1 (
[ACCOUNT_NB] int PRIMARY KEY
)
...
more >>