Groups | Blog | Home
all groups > sql server msde > december 2005 >

sql server msde : Business Contact Manager Database locations on partitioned drive



Morse1
12/10/2005 10:01:02 AM
MVP on the Outlook 2003/BCM group suggested I bring this question to SQL
server msde:

I have a partitioned drive with the "C" partition holding only system files
and enough room for a manually sized swap file. Therefore, I need to have
the BCM database files reside on the "D" partition. How can I accomplish
Morse1
12/10/2005 12:03:02 PM
OK, I understand editing the target and data directories' paths, but do not
know where to find the file to edit or what object to use to edit. Could you
hold my hand?

The system I am working with is W2K Server, with XPPro workstations and
Outlook 2003/BCM.

[quoted text, click to view]
Andrea Montanari
12/10/2005 7:41:00 PM
hi,
[quoted text, click to view]

you can perhaps specify (MSDE 2000) to install binaries and data on another
drive (see DATADIR and TARGETDIR parameters in
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/distsql/distsql_84xl.asp)
just remember that a minor part of binaries will be installed anyway in
\Program Files\Microsoft SQL Server\80 ... those files are shared among all
installable instances (up to 16 per machine) and can not be relocated...
--
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz/DbaMgr.shtm http://italy.mvps.org
DbaMgr2k ver 0.16.0 - DbaMgr ver 0.61.0
(my vb6+sql-dmo little try to provide MS MSDE 1.0 and MSDE 2000 a visual
interface)
--------- remove DMO to reply

Andrea Montanari
12/12/2005 12:16:15 PM
hi,
[quoted text, click to view]

you can both "edit" an .Ini file to specify such arbitrary options like
<--your_inifile.ini-->
[Options]
TARGETDIR="D:\MyInstance\Binn\"
DATADIR="D:\MyInstance\Data\"
</--your_inifile.ini-->

and provide the Ini file spec to the setup.exe bootstrap installer
c:\...\>setup.exe /settings your_inifile.ini .... additional parameters...

or provide all parameters (and this is the way I prefer) as command line
parameters to the setup.exe bootstrap installer, like
c:\...\>setup.exe TARGETDIR="D:\MyInstance\Binn\"
DATADIR="D:\MyInstance\Data\" SECURITYMODE=SQL SAPWD=your_pwd etc...

please provide a final
/L*v "c:\MsdeLog.txt"
parameter to enable verbose logging of the installation process, that will
result in an about 2mb text file you can inspect in case of troubles...
--
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz/DbaMgr.shtm http://italy.mvps.org
DbaMgr2k ver 0.16.0 - DbaMgr ver 0.61.0
(my vb6+sql-dmo little try to provide MS MSDE 1.0 and MSDE 2000 a visual
interface)
--------- remove DMO to reply

AddThis Social Bookmark Button