Device activation error
- From: "Pradeep" <Pradeep@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 31 May 2005 05:27:01 -0700
Hi all,
According to the requirement I need to install the database files on
U:\ and T:\ which are mapped network drives. It is giving me the error
"Device activation error. The physical file name
'T:\MSSQL$SQL01\data\product.mdf' may be incorrect."
I found an article on knowledge base which says for security reasons SQL
Server installation is not allowed in Mapped network drives but we can
disable it temporarily with the help of Trace Flag 1807 using DBCC command.
I tried that, after that also its not working.
I used the following query
USE MASTER
DBCC TRACEON(1807)
IF NOT EXISTS
(
SELECT name FROM master.dbo.sysdatabases WHERE name = N'ATEMS'
)
CREATE DATABASE ATEMS ON
(NAME = ATEMS1, FILENAME='T:\MSSQL$SQL01\data\product.mdf', SIZE = 5,
MAXSIZE = 6, FILEGROWTH = 1)
LOG ON
(NAME = ATEMSLOG1, FILENAME='U:\MSSQL$SQL01\Tlog\prdouctlog.ldf' , SIZE = 1,
MAXSIZE = 2,FILEGROWTH = 1)
also from the kb article I found that the SQL Server 2000 should give an
error number 5110 but it is giving an error number 5105 which is the number
for SQL Server 7.0
any idea why it is not working or any tips I can overcome this error?
By the way I am using MS SQL Server 2000 personal edition on Windows XP, the
KB article I found is
http://support.microsoft.com/default.aspx?scid=kb;en-us;304261
Thanks
Pradeep
.
- Follow-Ups:
- Re: Device activation error
- From: Geoff N. Hiten
- Re: Device activation error
- Prev by Date: Re: Planning for a new server
- Next by Date: Re: Device activation error
- Previous by thread: SP4 unattended setup without reboot.
- Next by thread: Re: Device activation error
- Index(es):
Relevant Pages
|