What do you mean by dbos? Do you mean databases? If so, there are some things you need to realize.
First.... data in a database is stored in files. Usually, there is one .mdf file (for the data) and one .ldf (for the log file). SQL Server runs as a service. When the service starts (at the time the computer starts), SQL Server will grab the files and lock them, so you cannot do anything with the database AS A FILE. If you want to move your database to another computer, the process is...
Locally:
1. open SQL Server Management Studio.
2. Right click your database
3. Click tasks -> Detach
Once the database is detached, you can no longer use it as a database, but you can start "working" with the files. Specifically... you can copy the files to another computer somewhere.
On the other server:
1. Right click "databases"
2. Click attach
3. follow the wizard.
If I am not mistaken (based on reading some of your other posts), you are switching from Access to SQL Server. I know this process can seem a little frustrating, but you should realize that what you lose in database portability, you more than gain in performance, stability, and reliability.
-George
"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom