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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating tables as DBO

Status
Not open for further replies.

Erics44

Programmer
Oct 7, 2004
133
GB
Hi
I have a VB .net front end and an action on it that runs a stored procedure that creates a table in my SQL server. When a user runs the stored procedure the table is created and named with the users user ID as a part of the table name so something like

UserID.tblTable

Does anyone know how I prevent this from happening? I would just like the table to be called tblTable.
Thanks for your time
 
Code:
CREATE Table dbo.TableName (....)

Borislav Borissov
VFP9 SP1, SQL Server 2000/2005.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top