hi
can we create a database in sql server 2005 which contains only one table and the table can contain any number of records but it should not allow to add another table and restrict us to create another table in same database.
how to achieve this?
Loading
Suthish NairPosted Jun 3, 2011, 6:02 AM
Else other workaround is using below query to check the tables count existing in a Database.
SELECT * from information_schema.tables
WHERE table_type = 'base table'