Showing posts with label tutorial. Show all posts
Showing posts with label tutorial. Show all posts

Friday, March 30, 2012

Installing MSDE - User Security Issues...

Hi,
Could someone point me in the direction of a step-by-step tutorial for
replicating a SQL Server 2000 database as an MSDE database in a seperate
machine, with all tables (including data), users/security, etc.
Currently I'm taking a backup (I can't script the data from Ent. Mgr) and
using oSQL to restore the database to an MSDE install on a machine.
It's done in two steps - installing MSDE and restoring the backup. However,
after the backup has been restored (the user restores correctly) - I am
unable to connect to the database as the default user that I created in the
backup. If I remove the user and re-add him via Ent. Mgr then I can
connect... does anyone know why this is?
First Step - Install MSDE script:
^^^^^^^^^^^^^^^^^^^^^^^^
Set objShell = CreateObject("WScript.Shell")
Set fso = createobject("scripting.filesystemobject")
Set WshNetwork = WScript.CreateObject("WScript.Network")
objShell.Exec(fso.getabsolutepathname(".") & "\setup.exe BLANKSAPWD=1
SAPWD="""" SECURITYMODE=SQL TARGETDIR=""C:\Program Files\Microsoft SQL
Server\Mssql\Binn\"" DATADIR=""C:\Program Files\Microsoft SQL
Server\Mssql\Data\"" instancename=""" & WshNetwork.ComputerName &
"\DatabaseName""")
Second Step - Restore the database backup:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Set objShell = CreateObject("WScript.Shell")
set fso = createobject("scripting.filesystemobject")
Set WshNetwork = WScript.CreateObject("WScript.Network")
currentpath = fso.getabsolutepathname(".")
' Start the msde service
objShell.Exec("net start MSSQL$" & WshNetwork.ComputerName &
"\DatabaseName")
' Make local data and backup directories
'objShell.Exec("md c:\SQL_Databases\DATA")
'objShell.Exec("md c:\SQL_Databases\BACKUP")
' Copy this Repository.bak to the SQL_Databases DatabaseName.bak
fso.CopyFile currentpath &
"\Repository.bak","c:\SQL_Databases\BACKUP\DatabaseName.bak"
' Restore
objShell.Exec(currentpath & "\osql.exe -S" & WshNetwork.ComputerName &
"\DatabaseName -E -Q ""restore database DatabaseName from disk =
'C:\SQL_Databases\BACKUP\DatabaseName.bak'""")
All I want to do is reproduce one of my SQL Server databases AS IS on
several client workstations by way of an MSDE installer.
Any help gratefully appreciated !
Thanks,
Mike
xposted to closely related groups: .sqlserver.msde, .sqlserver.security,
.sqlserver.setup
--
Liddle Feesh
*fap fap fap fap*
<>< <>< <>< <>< ><>
<>< <>< <>< <>< <>< <><
. ,
.:/
. ,,///;, ,;/
. o:::::::;;///
quote:

>::::::::;;\\\

''\\\\'" ';\
';\314546 HOW TO: Move Databases Between Computers That Are Running SQL Server
http://support.microsoft.com/?id=314546
304692 INF: Moving SQL Server 7.0 Databases to a New Server with BACKUP and
http://support.microsoft.com/?id=304692
Thanks,
Kevin McDonnell
Microsoft Corporation
This posting is provided AS IS with no warranties, and confers no rights.|||"Kevin McDonnell [MSFT]" <kevmc@.online.microsoft.com> wrote in message
news:clkWql2wDHA.2900@.cpmsftngxa07.phx.gbl...
quote:

> 314546 HOW TO: Move Databases Between Computers That Are Running SQL

Server
quote:

> http://support.microsoft.com/?id=314546
> 304692 INF: Moving SQL Server 7.0 Databases to a New Server with BACKUP

and
quote:

> http://support.microsoft.com/?id=304692

Hi Kevin and Joseph,
Many thanks for your replies relating to my difficulties with the orphaned
users that arise when restoring a backup on a different server.
Using the sp_change_user_login stored procedure worked perfectly.
Thanks again for your advice, and please accept my apologies for the slight
crosspost.
Best Regards,
Mike
Liddle Feesh
*fap fap fap fap*
<>< <>< <>< <>< ><>
<>< <>< <>< <>< <>< <><
. ,
.:/
. ,,///;, ,;/
. o:::::::;;///
quote:

>::::::::;;\\\

''\\\\'" ';\
';\sql

Friday, March 23, 2012

Installing AdventureWorks DB in SQL Server 2005


Hello to Everyone,
I am trying to install the sample database: AdventureWorks. I am using the tutorial as a direction, but so far no luck I get an error that suggests hardware requirements not met. My machine only has 194 RAM and the suggested RAM is 512. But while installing the software this problem never came up kind of weird.
Anyway I would appreciate any input.
Thank You All,
GinoWhere do you have problems ? In installing the SQL Server service or the database ? With the successfull installation of the installer package of the Adventureworks database you will only get the file written to the specified folder. YOu will need to attach them / or execute the db creation script on your own.

HTH, Jens K. Suessmeyer.

http://www.sqlserver2005.de|||

Hello Jens,

Thank You for your response. My problem is i do not know how to upload the database into SQL server 2005. I can see where the data is in my hard drive but can not upload it. There are two file: one is a log file and the other one i think is the database (different extensions) So this summs it up. Could you point me in the right direction Please.

Thank You.

Gino

|||

I think sample databases come in MDF (database file) and LDF (log file)

and you just have to attach them in SQL Server (right click under "Databases" -> Attach -> find the MDF file)

|||

Adventure Works did not come with my installation DVD.

Is it available online ?

|||

Banthor wrote:

Adventure Works did not come with my installation DVD.

Is it available online ?

Google to the rescue

download sample databases here http://www.microsoft.com/downloads/details.aspx?familyid=E719ECF7-9F46-4312-AF89-6AD8702E4E6E&displaylang=en

Walk-through

http://msdn2.microsoft.com/en-US/library/ms310325(VS.80).aspx

http://builder.com.com/5100-6388_14-6026962.html

Installing AdventureWorks DB in SQL Server 2005


Hello to Everyone,
I am trying to install the sample database: AdventureWorks. I am using the tutorial as a direction, but so far no luck I get an error that suggests hardware requirements not met. My machine only has 194 RAM and the suggested RAM is 512. But while installing the software this problem never came up kind of weird.
Anyway I would appreciate any input.
Thank You All,
GinoWhere do you have problems ? In installing the SQL Server service or the database ? With the successfull installation of the installer package of the Adventureworks database you will only get the file written to the specified folder. YOu will need to attach them / or execute the db creation script on your own.

HTH, Jens K. Suessmeyer.

http://www.sqlserver2005.de|||

Hello Jens,

Thank You for your response. My problem is i do not know how to upload the database into SQL server 2005. I can see where the data is in my hard drive but can not upload it. There are two file: one is a log file and the other one i think is the database (different extensions) So this summs it up. Could you point me in the right direction Please.

Thank You.

Gino

|||

I think sample databases come in MDF (database file) and LDF (log file)

and you just have to attach them in SQL Server (right click under "Databases" -> Attach -> find the MDF file)

|||

Adventure Works did not come with my installation DVD.

Is it available online ?

|||

Banthor wrote:

Adventure Works did not come with my installation DVD.

Is it available online ?

Google to the rescue

download sample databases here http://www.microsoft.com/downloads/details.aspx?familyid=E719ECF7-9F46-4312-AF89-6AD8702E4E6E&displaylang=en

Walk-through

http://msdn2.microsoft.com/en-US/library/ms310325(VS.80).aspx

http://builder.com.com/5100-6388_14-6026962.html

Installing 2005 Samples

I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm trying
an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
Server\90\Samples directory.
Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked all
the installs for AdventureWorks and Samples, and it finally says must use
"Add Remove Programs to Install". So I went to Control Panel, "Add Remove
Programs", then it's tricky to decide which SQL 2005 to choose. I tried
several, but either got the same message, or it said that everything was
already installed.
Is there a simple .zip I can just download somewhere? Or what is the
correct way to install the samples, this has taken me almost an hour just to
get the samples.
Thanks,
Neal Walters
http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
demonstrating how I'm migrating my SQL hosting to SQL Express on my own
server.
http://Biztalk-Training.com
Hi Neal
I had these problems with my RTM build. I mucked around with a few
suggestions for a while & ended up simply uninstalling, then re-installing.
Everything went fine after that. If you choose this route, do make sure
you've carefully selected the individual samples nodes from the installer
options rather than simply selecting the "install everything locally on my
computer" heading node as apparently there may be some problems with that
route.
HTH
Regards,
Greg Linwood
SQL Server MVP
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>
|||Did you try
C:\Program Files\Microsoft SQL Server\90\Tools\Samples? (Including Tools)
Ben Nevarez
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>
|||Yes, no Samples in Tools. I did a directory search for Samples, and nowhere
to be found under 90.
Neal
|||The instructions for installing the sample databases and samples are in the
Books Online topic "Running Setup to Install AdventureWorks Sample Databases
and Samples". Alternatively, you can download the samples from this site:
http://msdn.microsoft.com/sql/downloads/samples/
Gail Erickson [MS]
SQL Server Documentation Team
This posting is provided "AS IS" with no warranties, and confers no rights
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:92583FD2-2D88-427F-865A-03B36D990264@.microsoft.com...
> Yes, no Samples in Tools. I did a directory search for Samples, and
> nowhere
> to be found under 90.
> Neal
>
|||I have same issue even after uninstall and reinstall of sql. I suspect it
is a reg entry flag that is not getting reset for samples.
William Stacey [MVP]
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>

Installing 2005 Samples

I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm trying
an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
Server\90\Samples directory.
Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked all
the installs for AdventureWorks and Samples, and it finally says must use
"Add Remove Programs to Install". So I went to Control Panel, "Add Remove
Programs", then it's tricky to decide which SQL 2005 to choose. I tried
several, but either got the same message, or it said that everything was
already installed.
Is there a simple .zip I can just download somewhere? Or what is the
correct way to install the samples, this has taken me almost an hour just to
get the samples.
Thanks,
Neal Walters
http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
demonstrating how I'm migrating my SQL hosting to SQL Express on my own
server.
http://Biztalk-Training.comHi Neal
I had these problems with my RTM build. I mucked around with a few
suggestions for a while & ended up simply uninstalling, then re-installing.
Everything went fine after that. If you choose this route, do make sure
you've carefully selected the individual samples nodes from the installer
options rather than simply selecting the "install everything locally on my
computer" heading node as apparently there may be some problems with that
route.
HTH
Regards,
Greg Linwood
SQL Server MVP
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>|||Did you try
C:\Program Files\Microsoft SQL Server\90\Tools\Samples? (Including Tools)
Ben Nevarez
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>|||Yes, no Samples in Tools. I did a directory search for Samples, and nowhere
to be found under 90.
Neal|||The instructions for installing the sample databases and samples are in the
Books Online topic "Running Setup to Install AdventureWorks Sample Databases
and Samples". Alternatively, you can download the samples from this site:
http://msdn.microsoft.com/sql/downloads/samples/
Gail Erickson [MS]
SQL Server Documentation Team
This posting is provided "AS IS" with no warranties, and confers no rights
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:92583FD2-2D88-427F-865A-03B36D990264@.microsoft.com...
> Yes, no Samples in Tools. I did a directory search for Samples, and
> nowhere
> to be found under 90.
> Neal
>|||I have same issue even after uninstall and reinstall of sql. I suspect it
is a reg entry flag that is not getting reset for samples.
William Stacey [MVP]
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>

Installing 2005 Samples

I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm trying
an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
Server\90\Samples directory.
Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked all
the installs for AdventureWorks and Samples, and it finally says must use
"Add Remove Programs to Install". So I went to Control Panel, "Add Remove
Programs", then it's tricky to decide which SQL 2005 to choose. I tried
several, but either got the same message, or it said that everything was
already installed.
Is there a simple .zip I can just download somewhere? Or what is the
correct way to install the samples, this has taken me almost an hour just to
get the samples.
Thanks,
Neal Walters
http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
demonstrating how I'm migrating my SQL hosting to SQL Express on my own
server.
http://Biztalk-Training.comHi Neal
I had these problems with my RTM build. I mucked around with a few
suggestions for a while & ended up simply uninstalling, then re-installing.
Everything went fine after that. If you choose this route, do make sure
you've carefully selected the individual samples nodes from the installer
options rather than simply selecting the "install everything locally on my
computer" heading node as apparently there may be some problems with that
route.
HTH
Regards,
Greg Linwood
SQL Server MVP
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>|||Did you try
C:\Program Files\Microsoft SQL Server\90\Tools\Samples? (Including Tools)
Ben Nevarez
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>|||Yes, no Samples in Tools. I did a directory search for Samples, and nowhere
to be found under 90.
Neal|||The instructions for installing the sample databases and samples are in the
Books Online topic "Running Setup to Install AdventureWorks Sample Databases
and Samples". Alternatively, you can download the samples from this site:
http://msdn.microsoft.com/sql/downloads/samples/
--
Gail Erickson [MS]
SQL Server Documentation Team
This posting is provided "AS IS" with no warranties, and confers no rights
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:92583FD2-2D88-427F-865A-03B36D990264@.microsoft.com...
> Yes, no Samples in Tools. I did a directory search for Samples, and
> nowhere
> to be found under 90.
> Neal
>|||I have same issue even after uninstall and reinstall of sql. I suspect it
is a reg entry flag that is not getting reset for samples.
--
William Stacey [MVP]
"Neal Walters" <NealWalters@.discussions.microsoft.com> wrote in message
news:00F51F16-A03C-4882-9A26-3447FA33004F@.microsoft.com...
>I installed SQL 2005 Dev Edition on laptop, basics working fine. I'm
>trying
> an SSIS tutorial, it refers to: c:\Program Files\Microsoft SQL
> Server\90\Samples directory.
> Said directory is not on my disk. I inserted Setup (CD 2 of 2), clicked
> all
> the installs for AdventureWorks and Samples, and it finally says must use
> "Add Remove Programs to Install". So I went to Control Panel, "Add Remove
> Programs", then it's tricky to decide which SQL 2005 to choose. I tried
> several, but either got the same message, or it said that everything was
> already installed.
> Is there a simple .zip I can just download somewhere? Or what is the
> correct way to install the samples, this has taken me almost an hour just
> to
> get the samples.
> Thanks,
> Neal Walters
> http://SQL-Online-Training.com - SQL2005 Videos/Samples - I'll be
> demonstrating how I'm migrating my SQL hosting to SQL Express on my own
> server.
> http://Biztalk-Training.com
>sql

Monday, March 19, 2012

Installation Tutorial

Does anyone know of a good, straight forward tutorial for installing SQL
Server on XP Pro?
I will be getting a copy from university under the Academic Alliance scheme
and therefore it doesn't come with the installation manual. I want to make
sure I install everything correctly so I know if I have any problems it's
with my apps as opposed to SQL Server.
Thanks in advanceThis page and the URL's within should help
http://support.microsoft.com/default.aspx?scid=kb;en-us;257716
Ray Higdon MCSE, MCDBA, CCNA
--
"Andrew Banks" <banksy@.blablablueyonder.co.uk> wrote in message
news:sm7pb.3710$fp6.26320132@.news-text.cableinet.net...
> Does anyone know of a good, straight forward tutorial for installing SQL
> Server on XP Pro?
> I will be getting a copy from university under the Academic Alliance
scheme
> and therefore it doesn't come with the installation manual. I want to make
> sure I install everything correctly so I know if I have any problems it's
> with my apps as opposed to SQL Server.
> Thanks in advance
>