Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting a table for write abilities

Status
Not open for further replies.

rtdvoip

Programmer
Aug 29, 2003
27
US
What is the quickest procedure for setting a table
to be read-wite?

thanks in advance,
rtdvoip
 
Tables are always read-write. The users access to the table is what needs to be changed. To grant read access use "grant select on TableName to UserName". Replace select with insert or update or delete depending on what writes you need to grant.

You can also do more than one at a time "grant select, update, insert on TableName to UserName".

Also check out GRANT on BOL.

Denny Cherry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top