|
-
Sep 5th, 2007, 06:49 PM
#1
Thread Starter
Frenzied Member
[2005] Chaning a MDB table
Can I add/edit/delete feilds in a .mdb database?
If so how?
-
Sep 5th, 2007, 08:32 PM
#2
Hyperactive Member
Re: [2005] Chaning a MDB table
Hi
A wee dangerous. You'll want to back up or make a backup of the table as sql can be a bit unforgiving. Try using sql view in Access to test it out on something not important first.
Alter Table SomeTableName
Drop Column SomeColumnName
Alter Table SomeTableName
Add Column SomeColumnName Datatype
I believe you can't delete an identity column, but you could alway make a new table.
-
Sep 6th, 2007, 03:47 PM
#3
Re: [2005] Chaning a MDB table
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|