I am creating a web application for my company's Intranet.
I have a SQL Server 2000 database, 10 TABLES, 17 VIEWS, 3 Stored Proc's., fairly simple, I suppose.
I'm trying to create a second, identical instance of this database on the server - that would serve as the information store that is used for admin people. So that ongoing UPDATES, DELETIONS and new INSERTS are happening on one instance, while basic is hitting the "static" instance.
When I run the DTS (right-click on DB >> All Tasks >> Export Data) all of my VIEWS are getting translated as TABLES in the new instance. That is, they are no longer "viewing" or "filtering" data from an orignal source table, but are rather coming across as stand-alone "hard-code" tables, now containing a literal snapshot of the information that the original views in the first DB instance would have displayed.
Any ideas what I'm doing wrong?
(I'm still somewhat of a newbie).
I have a SQL Server 2000 database, 10 TABLES, 17 VIEWS, 3 Stored Proc's., fairly simple, I suppose.
I'm trying to create a second, identical instance of this database on the server - that would serve as the information store that is used for admin people. So that ongoing UPDATES, DELETIONS and new INSERTS are happening on one instance, while basic is hitting the "static" instance.
When I run the DTS (right-click on DB >> All Tasks >> Export Data) all of my VIEWS are getting translated as TABLES in the new instance. That is, they are no longer "viewing" or "filtering" data from an orignal source table, but are rather coming across as stand-alone "hard-code" tables, now containing a literal snapshot of the information that the original views in the first DB instance would have displayed.
Any ideas what I'm doing wrong?
(I'm still somewhat of a newbie).