Hi!
Suppose I create a permanent table called "Customer" in Server using MSMS:
USE MyServer
Create Table CUSTOMER ( field1 nvarchar, ..etc... )
(a) Exactly where is this table located?
------------------
Is it possible to make a copy of this table in a folder in my LOCAL computer, say in C:\COPY_TABLE ?
(b) How can I do this?
------------------
(c) Can I work with this COPY in MSMS exactly as I would with the original table (on Server)?
i.e. Can I select from this table? Insert into this table? Drop this table? ... using MSMS.
How do I do this?
I must start with USE.... Use what? Should I create a database in my local computer first?
How do I do that?
--------------------
Thanks
Leon Lai