Feb 24, 2010 4:55 PM
Removing prefix admin on tablename
-
Like (0)
Just want to check if this possible
when I created a table using xyz_id (user) , table created
Is there any possible you can chop the admin. before the tablename, I want to see as user_id.tablename
alter table <tablename> owner to xyz_id;
You would have to run that as the user admin since a normal user cannot alter the ownership of a table. If you create the table using the xyz_id user, I'd assume that you have metadata caching turned on in WinSQL and if you refresh it then it would show the correct ownership.

