Showing posts with label install. Show all posts
Showing posts with label install. Show all posts

Tuesday, March 27, 2012

Can't start SQLEXPRESS so that I can't install latest SQLEXPRESS security updates.

I can't start SQLEXPRESS.

The SQL ERRORLOG shows: Error is 3414, Severity 21, State 2 and says: "An error occurred during recovery, preventing the database 'model' (database ID 3) from restarting." Just prior to this, I get a warning: "did not see LP_CKPT_END".

Any thoughts why this might be and how I can fix this?

Seems like something happened to your master database, check out the BOL topic on restoring master for starters.

Mike

|||

Thank you for your thoughts.

Unfortunately, I am not able to restore the database because I can't start SQLEXPRESS. I have even tried the command line sqlservr -s SQLEXPRESS command line command without success.

I continue to get this warning "did not see LP_CKPT_END" Error:3414, Severity:21, State: 1.

It might help to know that I have never used the SQLEXPRESS database on my box before. (I also have an instance of MSSQLSERVER and that is what I have been using. MSSQLSERVER starts up without issue.)

I'm not sure what it is that I would be restoring as I haven't created any databases in SQLEXPRESS.

The issue began when I update MSSQLSERVER with SP2 (KB 933508) install package. It seemed to take fine. I also did the install after March 5, 2007 -- a critical date for this update.

When the SQL 2005 Express SP2 (KB 921896) came out, it would load because it couldn't start an instance of SQLEXPRESS.

Does this help explain the background better? Your further suggestions would be helpful.

|||

This one is beyond me. Moving to the setup forum to ask the experts.

Mike

Can't start sql server 2000, error: "use sql 2005 management tools" !!!!

hi .everyone !

i have ms visual studio 2005 with sql sever 2005 management tools

anyway .. i want to use and install sql server 2000 in this machine .. i tried to install it, but when i tried to connect to the server .. it gives me this error:

"you must use sql server 2005 management tools to connect to this server"

can you help me ? plz !?

no one can help me ?

any suggestion ? help ? :(

Can't start sql agent

Hi there,
I install SQL server 2000 in Win 2000 server with SQL SP3
and Win 2000 SP4.
The SQL is default instance and use local system as
service startup account.
Currently I change the startup services account from local
system to domain user account.
SQL Server success start but the sql agant no! I don't
know why? I check the error message - it say cannot
connect local server.
Now I change back the sql agent startup agent to local
system but it still can't start!!
Please help cause I need SQL agent!!
ThanksMay be that the BUILTIN\Administrators group was dropped from SQL Server. If
so, recreate it.
--
Sérgio Monteiro - Brasil
www.sqlpass.org
"Chai" <wingschai@.hotmail.com> escreveu na mensagem
news:082a01c38a25$78aa36f0$a401280a@.phx.gbl...
> Hi there,
> I install SQL server 2000 in Win 2000 server with SQL SP3
> and Win 2000 SP4.
> The SQL is default instance and use local system as
> service startup account.
> Currently I change the startup services account from local
> system to domain user account.
> SQL Server success start but the sql agant no! I don't
> know why? I check the error message - it say cannot
> connect local server.
> Now I change back the sql agent startup agent to local
> system but it still can't start!!
> Please help cause I need SQL agent!!
> Thanks|||I'd check what the SQL Server instance is listening on. In the errorlog, you
should find entries similar to the following:
2003-10-03 20:45:28.95 server SQL server listening on 67.83.16.85: 1058.
2003-10-03 20:45:28.95 server SQL server listening on 127.0.0.1: 1058.
2003-10-03 20:45:32.49 server SQL server listening on TCP, Shared Memory,
Named Pipes.
Also, you may want to log into the SQL Server box with the SQL Agent account
and try osql -S<ServerName> -E from the command line.
--
Linchi Shea
linchi_shea@.NOSPAMml.com
"Chai" <wingschai@.hotmail.com> wrote in message
news:082a01c38a25$78aa36f0$a401280a@.phx.gbl...
> Hi there,
> I install SQL server 2000 in Win 2000 server with SQL SP3
> and Win 2000 SP4.
> The SQL is default instance and use local system as
> service startup account.
> Currently I change the startup services account from local
> system to domain user account.
> SQL Server success start but the sql agant no! I don't
> know why? I check the error message - it say cannot
> connect local server.
> Now I change back the sql agent startup agent to local
> system but it still can't start!!
> Please help cause I need SQL agent!!
> Thanks|||If I'm not mistaken, a different error (other than cannot connect to local
server) would be issued if you drop BUILTIN\Administrators from SQL Server
and then try to start SQLServerAgent.
By the way, SQL Server Agent log file SQLAgent.out may contain useful info.
--
Linchi Shea
linchi_shea@.NOSPAMml.com
"Sérgio Monteiro" <shsmonteiro@.horizon.com.br> wrote in message
news:ucRO6piiDHA.3204@.TK2MSFTNGP11.phx.gbl...
> May be that the BUILTIN\Administrators group was dropped from SQL Server.
If
> so, recreate it.
> --
> Sérgio Monteiro - Brasil
> www.sqlpass.org
> "Chai" <wingschai@.hotmail.com> escreveu na mensagem
> news:082a01c38a25$78aa36f0$a401280a@.phx.gbl...
> > Hi there,
> >
> > I install SQL server 2000 in Win 2000 server with SQL SP3
> > and Win 2000 SP4.
> >
> > The SQL is default instance and use local system as
> > service startup account.
> >
> > Currently I change the startup services account from local
> > system to domain user account.
> >
> > SQL Server success start but the sql agant no! I don't
> > know why? I check the error message - it say cannot
> > connect local server.
> >
> > Now I change back the sql agent startup agent to local
> > system but it still can't start!!
> >
> > Please help cause I need SQL agent!!
> >
> > Thanks
>|||You're right. The exact message is "SQLServerAgent could not be started
(reason: SQLServerAgent must be able to
connect to SQLServer as SysAdmin, but '(Unknown)' is not a member of the
SysAdmin role). "
But I remember one situation in which I faced this issue and somebody had
dropped the BUILTIN\Administrators. May be I'm confusing the situations.
Sérgio Monteiro - Brasil
www.sqlpass.org
"Linchi Shea" <linchi_shea@.NOSPAMml.com> escreveu na mensagem
news:#kncH4iiDHA.1692@.TK2MSFTNGP10.phx.gbl...
> If I'm not mistaken, a different error (other than cannot connect to local
> server) would be issued if you drop BUILTIN\Administrators from SQL Server
> and then try to start SQLServerAgent.
> By the way, SQL Server Agent log file SQLAgent.out may contain useful
info.
> --
> Linchi Shea
> linchi_shea@.NOSPAMml.com
>
> "Sérgio Monteiro" <shsmonteiro@.horizon.com.br> wrote in message
> news:ucRO6piiDHA.3204@.TK2MSFTNGP11.phx.gbl...
> > May be that the BUILTIN\Administrators group was dropped from SQL
Server.
> If
> > so, recreate it.
> >
> > --
> > Sérgio Monteiro - Brasil
> > www.sqlpass.org
> > "Chai" <wingschai@.hotmail.com> escreveu na mensagem
> > news:082a01c38a25$78aa36f0$a401280a@.phx.gbl...
> > > Hi there,
> > >
> > > I install SQL server 2000 in Win 2000 server with SQL SP3
> > > and Win 2000 SP4.
> > >
> > > The SQL is default instance and use local system as
> > > service startup account.
> > >
> > > Currently I change the startup services account from local
> > > system to domain user account.
> > >
> > > SQL Server success start but the sql agant no! I don't
> > > know why? I check the error message - it say cannot
> > > connect local server.
> > >
> > > Now I change back the sql agent startup agent to local
> > > system but it still can't start!!
> > >
> > > Please help cause I need SQL agent!!
> > >
> > > Thanks
> >
> >
>

Thursday, March 22, 2012

Cant seem to install SQL server 2005? Install completes, but where is SQL Server 2005

I went to one of the Microsoft "Ready To Launch" events over a year ago. Microsoft was gracious and gave everyone who attended a free copy of Visual Studio 2005 and SQL Server 2005. I have installed the Visual Studio and use it all of the time. I also installed the SQL server 2005 but I can not find the application on my computer. After the install the only items that appear to have been installed are the following:

SQL Server Configuration tools(SQL Server Configuration manager,SQL Server Error and usage reporting, SQL Server surface area confiuration, Reporting Services configuration). There is also a menu icon labeled "Microsoft SQL server upgrade advisor" and SQL server upgraded wizard.

That is all. I can't find anything that is analogus to the Enterprise manager that was in SQL server 2000 or anything that is analogous to Query Analyzer of 2005.

Can someone help me out? We use SQL server 2005 so I know how it looks. I just can't see where it insalled. I don't think it did?

Hi;

It seems that u only installed SQL server you could check it from your services..

Anyway; you could install SQL server management studio fromwww.microsoft.com

But even without installing studio with the current configuration u could reach your DB from VS2005 but sure gotta check your services..

|||

Check the below link to download the SQL server 2005 studio management

Studio Management.

HC

Monday, March 19, 2012

Can't run under the Eval version of Sql2000

I install the evaluation version of SQL Server 2000.
When I install the evaluation version of Reporting Service, the Installer
require me a SqlServer with Server pack 3a
But the Server pack 3a can't install with evaluation version of SQL Server
2000
How can I do?I guess theres nothing much you can do in this case :(
>--Original Message--
>I install the evaluation version of SQL Server 2000.
>When I install the evaluation version of Reporting
Service, the Installer
>require me a SqlServer with Server pack 3a
>But the Server pack 3a can't install with evaluation
version of SQL Server
>2000
>How can I do?
>
>.
>|||Actually, that's not correct. You can install SQL Server 2000 Service Pack
3a on the Evaluation Edition. See
http://www.microsoft.com/sql/downloads/2000/sp3.asp, a section of which is
copied below:
SQL Server 2000 SP3a:
a.. Improves serviceability for SQL Server 2000 Evaluation Edition. SP3a
enables service pack upgrades for trial software. In the past, service packs
have not been applicable to trial software.
--
Sincerely,
Stephen Dybing
This posting is provided "AS IS" with no warranties, and confers no rights.
"ad" <ad@.wfes.tcc.edu.tw> wrote in message
news:u1hHCavjEHA.2652@.TK2MSFTNGP15.phx.gbl...
>I install the evaluation version of SQL Server 2000.
> When I install the evaluation version of Reporting Service, the Installer
> require me a SqlServer with Server pack 3a
> But the Server pack 3a can't install with evaluation version of SQL Server
> 2000
> How can I do?
>

Sunday, February 19, 2012

Can't locate RS 2005 in MSDN library

I'm having trouble locating the RS 2005 install in the MSDN subscription
catalog. Can anyone tell me on which CD/DVD the install in located. I have
the SQL Server DVD. I can't seem to locate it when I search the online
subscription list either.
Thanks.If I put the unfiltered by as unfiltered and then look for reporting
services I find it.
Have you installed SQL Server Books On Line for SQL Server 2005? If you
don't see it in MSDN Library you will find it in Books On line SQL Server
2005
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"JW" <JW@.discussions.microsoft.com> wrote in message
news:9DF6DFF8-246B-4E82-9442-18F0F4E59D40@.microsoft.com...
> I'm having trouble locating the RS 2005 install in the MSDN subscription
> catalog. Can anyone tell me on which CD/DVD the install in located. I
> have
> the SQL Server DVD. I can't seem to locate it when I search the online
> subscription list either.
> Thanks.|||Sorry for the confusion. I'm looking for the install DVD in my MSDN
subscription. I was of the understanding that reporting services 2005 would
be in my December shipment but can't locate it. I also can't find it when I
search the subscription index here:
http://msdn.microsoft.com/subscriptions/index/default.aspx or in my online
subscription download.
"Bruce L-C [MVP]" wrote:
> If I put the unfiltered by as unfiltered and then look for reporting
> services I find it.
> Have you installed SQL Server Books On Line for SQL Server 2005? If you
> don't see it in MSDN Library you will find it in Books On line SQL Server
> 2005
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>
> "JW" <JW@.discussions.microsoft.com> wrote in message
> news:9DF6DFF8-246B-4E82-9442-18F0F4E59D40@.microsoft.com...
> > I'm having trouble locating the RS 2005 install in the MSDN subscription
> > catalog. Can anyone tell me on which CD/DVD the install in located. I
> > have
> > the SQL Server DVD. I can't seem to locate it when I search the online
> > subscription list either.
> >
> > Thanks.
>
>|||RS does not have a separate DVD/CD. It is part of the SQL Server 2005
install. The only reason it did initially was that it was release mid cycle
for SQL Server.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"JW" <JW@.discussions.microsoft.com> wrote in message
news:B68EAD4B-993D-47AB-9721-DABC2A0ACCD0@.microsoft.com...
> Sorry for the confusion. I'm looking for the install DVD in my MSDN
> subscription. I was of the understanding that reporting services 2005
> would
> be in my December shipment but can't locate it. I also can't find it when
> I
> search the subscription index here:
> http://msdn.microsoft.com/subscriptions/index/default.aspx or in my online
> subscription download.
> "Bruce L-C [MVP]" wrote:
>> If I put the unfiltered by as unfiltered and then look for reporting
>> services I find it.
>> Have you installed SQL Server Books On Line for SQL Server 2005? If you
>> don't see it in MSDN Library you will find it in Books On line SQL Server
>> 2005
>> --
>> Bruce Loehle-Conger
>> MVP SQL Server Reporting Services
>>
>> "JW" <JW@.discussions.microsoft.com> wrote in message
>> news:9DF6DFF8-246B-4E82-9442-18F0F4E59D40@.microsoft.com...
>> > I'm having trouble locating the RS 2005 install in the MSDN
>> > subscription
>> > catalog. Can anyone tell me on which CD/DVD the install in located. I
>> > have
>> > the SQL Server DVD. I can't seem to locate it when I search the online
>> > subscription list either.
>> >
>> > Thanks.
>>

Thursday, February 16, 2012

Can''t install the client components, error raised

Hi,

when I try to install the client components I receive this error:

Upgrade failed due to the following error. The error code is:

-2147467259. Message: Unspecified error

I think the problem is during the upgrade of the report server components.

my computer has the SQL 2005 client components installed but I have just uninstall these components.

I'll try on a second computer , the first one is Vista, the second is XP SP2.

I have opened a connect issue around this error including the complete log.

thanks for your guides.

For info:

the same steps on an XP SP2 station works fine.

(removing SQL 2005 client components and then installing SQL 2008 client components)

|||

In the katmai site has a document speaking that before you install katmai,remove the workstation components of Sql Server 2005...

4.3.3 Installing SQL Server "Katmai" Removes Support for DTS in SQL Server 2005 Integration Services Packages

For this CTP release, you must uninstall SQL Server 2005 Workstation Components before installing the SQL Server "Katmai" Workstation Components. Uninstalling the SQL Server 2005 Workstation Components removes three Integration Services components: the SQL Server 2005 version of the Execute DTS 2000 Package task and two supporting assemblies. These three Integration Services components support backward compatibility between SQL Server 2005 and SQL Server 2000 Data Transformation Services (DTS). Without these three components, SQL Server 2005 packages and tools that require DTS support will not run.

However, SQL Server "Katmai" Integration Services includes a version of the Execute DTS 2000 task and the two supporting assemblies. Therefore, you can upgrade SQL Server 2005 packages that require DTS support to the SQL Server "Katmai" format by opening them in the SQL Server "Katmai" version of Business Intelligence Development Studio, and then running those packages as SQL Server "Katmai" packages.

|||

I have removed everything from SQL 2005 and the error still here only on my Vista station.

I try to install each client component 1 by 1 and the error is raised when I try to install the BIDS (dev studio) component.

The server components can be installed without any issue.

|||Willgart,

On the succesful xp installation (where you un-installed the S2K5 client bits first), did you have CLR 2.0 installed on that box?

The reason I'm asking is that from my tests, it fails if you have CLR 2.0 installed when you do the Katmai installation, and Vista does have CLR 2.0 installed by default (iirc), but not xp.

Niels
|||I got the same "Upgrade failed due to the following error. The error code is:

-2147467259. Message:Unspecified error" message. I had uninstalled the SQL 2005 programs. Win XP SP2, VS 2005, Office 2007. I ran it from servers\splash.hta. This was the last Product, Workstation Components, Books Online and Development Tools. Any ideas?

The last page of the log is:

Property(S): SqlDefaultWebSite = /W3SVC/1
Property(S): SqlASPNETInstalled = 1
Property(S): SqlCOMPlusInstalled = 1
Property(S): RSPREREQUISITECHECKED = 1
Property(S): RSSqlPoolLimit = 100
Property(S): RSGUIDVALUE = {4a8abfef-1c99-4619-be39-8545354bd776}
Property(S): RemoveFeatureList = Client_Components,Connectivity,SQL_Tools,SQL_WarehouseDevWorkbench,SDK,SQLXML,Tools_Legacy,TOOLS_BC_DEP,SQL_Documentation,SQL_Samples,SQL_BooksOnline,SQL_DatabaseSamples
Property(S): SqlOriginalMachineName = 06LP201
Property(S): Namechecksumcommon_32 = Developer Edition
Property(S): SqlSubDir = \MSSQL
Property(S): EditionTypechecksumcommon_32 = Developer Edition
Property(S): Namechecksumtools = Developer Edition
Property(S): EditionTypechecksumtools = Developer Edition
Property(S): ValidMOFInstanceName = 1
Property(S): ROOTDRIVE = D:\
Property(S): CostingComplete = 1
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 0
Property(S): PrimaryVolumeSpaceRequired = 0
Property(S): PrimaryVolumeSpaceRemaining = 0
Property(S): RSVirtualDirectoryServer = ReportServer
Property(S): RSVirtualDirectoryManager = Reports
Property(S): SOURCEDIR = C:\Temp\SQL Server Katmai Developer Edition X86, English\tools\Setup\
Property(S): SourcedirProduct = {D6251ACA-3FD4-49D1-8FCF-182B980B19E3}
Property(S): HxDs_Tmp_3643236F_FC70_11D3_A536_0090278A1BB8 = C:\DOCUME~1\ccook\LOCALS~1\Temp\HxC0D.tmp
Property(S): HxDs_Tmp_Hash_3643236F_FC70_11D3_A536_0090278A1BB8 = B40B0DC6C3C19C68E0101E0E2A647F0C3A18F6
Property(S): InstallNgenTicks = 2310000
Property(S): ProductToBeRegistered = 1
MSI (s) (08Big Smile8) [10:44:52:780]: Note: 1: 1708
MSI (s) (08Big Smile8) [10:44:52:780]: Product: Microsoft SQL Server "Katmai" Tools -- Installation failed.

MSI (s) (08Big Smile8) [10:44:52:820]: Cleaning up uninstalled install packages, if any exist
MSI (s) (08Big Smile8) [10:44:52:820]: MainEngineThread is returning 1603
MSI (s) (08:60) [10:44:52:931]: Destroying RemoteAPI object.
MSI (s) (08:2C) [10:44:52:931]: Custom Action Manager thread ending.
=== Logging stopped: 6/8/2007 10:44:52 ===
MSI (c) (8C:70) [10:44:52:971]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (c) (8C:70) [10:44:52:971]: MainEngineThread is returning 1603
=== Verbose logging stopped: 6/8/2007 10:44:52 ===

|||

Hi,

As Willgart wrote database engine is installed without any problem.

But the client components seems to create problem during the installation.

I worked some on installing the client components of Katmai on Windows Server 2008 Beta3.

You can read my experience on installing the client components of Katmai at my blog http://www.kodyaz.com/blogs/software_development_blog/archive/2007/06/10/567.aspx

As a short brief I uninstalled the workstation tools of SQL2005, restart and then run the msi package from \tools\setup\sqlrun_tools.msi

This method successfully installed the client tools of Katmai side by side a SQL2005 instance.

Eralper

http://www.kodyaz.com

|||

I have allready try this method to install the client components but I suffer the same error.

|||

This problem usually occurs if you have Microsoft Visual Studio 8 installed in a non-default location.

Please confirm if you have VS8 installed in a non-default location. If so, setup cannot find the following file and causes this problem:

C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe.config

If you put the missing file there and retry, setup should succeed.

|||

yes!

copying the file is the solution, I can successfully install the client components on my Vista station.

thanks.

|||

Well....

the installation was done, but none of the visual studio components works fine!

everytim I try to open a solution or create a new one I receive a lot of error (component not found and VS ask me to disable the non working component)

so it's certainly related to my VS setup which is not in the c: folder.

so I'll wait for the next release.

|||

Hi,

I had the same problem with installing the workstation components, but I tried to install the system on clean new VirualPC Windows Server 2003 SP1 nothing else installed....

BUT!: I installed .NET framework 2.0 and the .NET Framework 2.0 SDK before SQL-Server 2008 !!!!

After removing SDK, installation finished successfully !!!

Hope that helps!

|||I first assumed that it was problems with <SQL Server 2000 DTS Designer Components> but I don't think that was the main reason for this error message.
I can confirm that there are some problems installing SQL Server 10.0.1019 components when Microsoft .Net Framework 2.0 allready is installed (with patch).
I tried to install SQL server several times with same error messange until I uninstalled exsisting .Net Framework installation. It seems that components want to use the .Net Framework 2.0 that is bundled with SQL server.|||

Hi people! This is my first post here, with the same problem that the rest of you, except that my platform is Windows Server 2008 B3. I can install the DB engine but can't install client tools... any ideas? Tip: i've already installed Sharepoint Services v3.0 (with its own database engine... maybe the problem come from there....)

Agustín

Can't install the client components, error raised

Hi,

when I try to install the client components I receive this error:

Upgrade failed due to the following error. The error code is:

-2147467259. Message: Unspecified error

I think the problem is during the upgrade of the report server components.

my computer has the SQL 2005 client components installed but I have just uninstall these components.

I'll try on a second computer , the first one is Vista, the second is XP SP2.

I have opened a connect issue around this error including the complete log.

thanks for your guides.

For info:

the same steps on an XP SP2 station works fine.

(removing SQL 2005 client components and then installing SQL 2008 client components)

|||

In the katmai site has a document speaking that before you install katmai,remove the workstation components of Sql Server 2005...

4.3.3 Installing SQL Server "Katmai" Removes Support for DTS in SQL Server 2005 Integration Services Packages

For this CTP release, you must uninstall SQL Server 2005 Workstation Components before installing the SQL Server "Katmai" Workstation Components. Uninstalling the SQL Server 2005 Workstation Components removes three Integration Services components: the SQL Server 2005 version of the Execute DTS 2000 Package task and two supporting assemblies. These three Integration Services components support backward compatibility between SQL Server 2005 and SQL Server 2000 Data Transformation Services (DTS). Without these three components, SQL Server 2005 packages and tools that require DTS support will not run.

However, SQL Server "Katmai" Integration Services includes a version of the Execute DTS 2000 task and the two supporting assemblies. Therefore, you can upgrade SQL Server 2005 packages that require DTS support to the SQL Server "Katmai" format by opening them in the SQL Server "Katmai" version of Business Intelligence Development Studio, and then running those packages as SQL Server "Katmai" packages.

|||

I have removed everything from SQL 2005 and the error still here only on my Vista station.

I try to install each client component 1 by 1 and the error is raised when I try to install the BIDS (dev studio) component.

The server components can be installed without any issue.

|||Willgart,

On the succesful xp installation (where you un-installed the S2K5 client bits first), did you have CLR 2.0 installed on that box?

The reason I'm asking is that from my tests, it fails if you have CLR 2.0 installed when you do the Katmai installation, and Vista does have CLR 2.0 installed by default (iirc), but not xp.

Niels
|||I got the same "Upgrade failed due to the following error. The error code is:

-2147467259. Message:Unspecified error" message. I had uninstalled the SQL 2005 programs. Win XP SP2, VS 2005, Office 2007. I ran it from servers\splash.hta. This was the last Product, Workstation Components, Books Online and Development Tools. Any ideas?

The last page of the log is:

Property(S): SqlDefaultWebSite = /W3SVC/1
Property(S): SqlASPNETInstalled = 1
Property(S): SqlCOMPlusInstalled = 1
Property(S): RSPREREQUISITECHECKED = 1
Property(S): RSSqlPoolLimit = 100
Property(S): RSGUIDVALUE = {4a8abfef-1c99-4619-be39-8545354bd776}
Property(S): RemoveFeatureList = Client_Components,Connectivity,SQL_Tools,SQL_WarehouseDevWorkbench,SDK,SQLXML,Tools_Legacy,TOOLS_BC_DEP,SQL_Documentation,SQL_Samples,SQL_BooksOnline,SQL_DatabaseSamples
Property(S): SqlOriginalMachineName = 06LP201
Property(S): Namechecksumcommon_32 = Developer Edition
Property(S): SqlSubDir = \MSSQL
Property(S): EditionTypechecksumcommon_32 = Developer Edition
Property(S): Namechecksumtools = Developer Edition
Property(S): EditionTypechecksumtools = Developer Edition
Property(S): ValidMOFInstanceName = 1
Property(S): ROOTDRIVE = D:\
Property(S): CostingComplete = 1
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 0
Property(S): PrimaryVolumeSpaceRequired = 0
Property(S): PrimaryVolumeSpaceRemaining = 0
Property(S): RSVirtualDirectoryServer = ReportServer
Property(S): RSVirtualDirectoryManager = Reports
Property(S): SOURCEDIR = C:\Temp\SQL Server Katmai Developer Edition X86, English\tools\Setup\
Property(S): SourcedirProduct = {D6251ACA-3FD4-49D1-8FCF-182B980B19E3}
Property(S): HxDs_Tmp_3643236F_FC70_11D3_A536_0090278A1BB8 = C:\DOCUME~1\ccook\LOCALS~1\Temp\HxC0D.tmp
Property(S): HxDs_Tmp_Hash_3643236F_FC70_11D3_A536_0090278A1BB8 = B40B0DC6C3C19C68E0101E0E2A647F0C3A18F6
Property(S): InstallNgenTicks = 2310000
Property(S): ProductToBeRegistered = 1
MSI (s) (08Big Smile8) [10:44:52:780]: Note: 1: 1708
MSI (s) (08Big Smile8) [10:44:52:780]: Product: Microsoft SQL Server "Katmai" Tools -- Installation failed.

MSI (s) (08Big Smile8) [10:44:52:820]: Cleaning up uninstalled install packages, if any exist
MSI (s) (08Big Smile8) [10:44:52:820]: MainEngineThread is returning 1603
MSI (s) (08:60) [10:44:52:931]: Destroying RemoteAPI object.
MSI (s) (08:2C) [10:44:52:931]: Custom Action Manager thread ending.
=== Logging stopped: 6/8/2007 10:44:52 ===
MSI (c) (8C:70) [10:44:52:971]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (c) (8C:70) [10:44:52:971]: MainEngineThread is returning 1603
=== Verbose logging stopped: 6/8/2007 10:44:52 ===

|||

Hi,

As Willgart wrote database engine is installed without any problem.

But the client components seems to create problem during the installation.

I worked some on installing the client components of Katmai on Windows Server 2008 Beta3.

You can read my experience on installing the client components of Katmai at my blog http://www.kodyaz.com/blogs/software_development_blog/archive/2007/06/10/567.aspx

As a short brief I uninstalled the workstation tools of SQL2005, restart and then run the msi package from \tools\setup\sqlrun_tools.msi

This method successfully installed the client tools of Katmai side by side a SQL2005 instance.

Eralper

http://www.kodyaz.com

|||

I have allready try this method to install the client components but I suffer the same error.

|||

This problem usually occurs if you have Microsoft Visual Studio 8 installed in a non-default location.

Please confirm if you have VS8 installed in a non-default location. If so, setup cannot find the following file and causes this problem:

C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe.config

If you put the missing file there and retry, setup should succeed.

|||

yes!

copying the file is the solution, I can successfully install the client components on my Vista station.

thanks.

|||

Well....

the installation was done, but none of the visual studio components works fine!

everytim I try to open a solution or create a new one I receive a lot of error (component not found and VS ask me to disable the non working component)

so it's certainly related to my VS setup which is not in the c: folder.

so I'll wait for the next release.

|||

Hi,

I had the same problem with installing the workstation components, but I tried to install the system on clean new VirualPC Windows Server 2003 SP1 nothing else installed....

BUT!: I installed .NET framework 2.0 and the .NET Framework 2.0 SDK before SQL-Server 2008 !!!!

After removing SDK, installation finished successfully !!!

Hope that helps!

|||I first assumed that it was problems with <SQL Server 2000 DTS Designer Components> but I don't think that was the main reason for this error message.
I can confirm that there are some problems installing SQL Server 10.0.1019 components when Microsoft .Net Framework 2.0 allready is installed (with patch).
I tried to install SQL server several times with same error messange until I uninstalled exsisting .Net Framework installation. It seems that components want to use the .Net Framework 2.0 that is bundled with SQL server.|||

Hi people! This is my first post here, with the same problem that the rest of you, except that my platform is Windows Server 2008 B3. I can install the DB engine but can't install client tools... any ideas? Tip: i've already installed Sharepoint Services v3.0 (with its own database engine... maybe the problem come from there....)

Agustín

Can't install SSIS on an XP machine

Hi all,

Why would I not be able to install SSIS on an XP machine? The option is grayed out. As a matter of fact, all the options are grayed out, save for the client tools.

I'm using the September CTP.

Thanks in advance,
Anthony Rizzo, MCSE, MCDBAWhat SKU or Edition are you attempting to install?
Which options are grayed out?
Was SSIS already installed on this machine?|||It's SQL 2005 September CTP. I don't know the SKU or edition. It's build 9.00.1314.

Every single installation option is grayed out except the last option, which is Client Tools.

SSIS has never been installed on this machine before.

Thanks!
Anthony|||Sept CTP came on 2 disks. The second disk only had client tools on it. Is it possible that's what you have?

-Jamie|||I don't have media for the CTP. I downloaded the files from the CTP website. My users are attempting to install SQL via a share.|||The Enterprise Edition of SQL Server 2005 requires "Server" edition of OS (Windows 2000 or 2003 Server) for SQL/AS/RS/IS, and only allows to install Workstation Components on XP. All other editions fully support XP. I suggest downloading Developer edition if you need it on XP machine.|||Thanks! I'll download Developer today and see if that helps.

Can't Install SSIS

Ok, I am stumped.
On a clean Windows Server 2003 machine we installed SQL Server 2005 Enterprise edition.
We then installed all of the components, including BIDS. however, there is no option to start BIDS and I see devenv.exe does not exist.

Do I need VS installed in order to run BIDS and SSIS?

Thanks for any help!
Pete Verrone
It is Itanium machine? Unfortunately, Visual Studio (and thus BIDS) are not supported on Itanium.

On any other platform, BIDS shortcut should be in Microsoft SQL Server 2005 start menu folder.

Cant Install SQLServer 2005

I installed Visual Studio 2005 (released edition) that I downloaded from MSDN, and then went to install the released edition of SQL Server 2005. On the SQL Server 2005 setup "components to install" screen, all but the last choice ("Workstation components, Books Online, and development tools" are grayed out so I cannot install them.
The machine on which I was installing these had just been re-imaged and was clean.
How do I get around this so I can install SQL Server2005?
MarkHi Mark
I also have the same problem. This is the message I got: setup has detected a problem with microsoft.Net framework installation and cannot proceed. Microsoft framework 2.0 is either not installed on this system or is corrupt.
No idea what to do. I have uninstalled vs 2005 though and have vs 2003. That works fine.

Can't install sqlserver 2000

I tried the following question in setup, but didn't get an answer. I think
not being able to install sqlserver 2000 is a serious problem. I'd
appreciate any help.
thanks.
dennist685
When I try to install sql server 2000 I get the following message.
Microsoft sql server 2000 enterprise edition server component is not
supported on this operating system. Only client components will be available
for installation.
I have xp pro.
I have never installed sql server 2000 before.
If client components are sufficient, how do I configure the security as
simple as possible. For now, just so I can sign in with all rights, with as
little typing as possible.
I went this far before cancelling. I clicked setup(I have the msdn DVD
version). After clicking next a few times it gave me the choice of client
tools only or connectivity only. The option button for server and client
tools was greyed out.
I have adsl and an ethernet card for the adsl, but I am not connected to any
sqlserver 2000.
Please help.
dennist685
Hi,
The server components of the Enterprise Edition could not be installed on xp.
You should use the Developer Edition if you want to install all components
on xp.
If you do not have any server component available, client components only
will not provide the ability to create databases/tables….
Lionel
my answer
Thanks Lionel. I chose the developer edition, server and client tools.
However when I get to services accounts I accepted the default - use a domain
user account. It had the username I use for logon to windows - dennist685.
the domain name was my first name in Caps. I tried several passwords, but got
the following error message:
The logon account cannot be validated for the sql server service. Verify
that the user name and password entered are correct. The logon attempt
failed.
Any ideas?
dennist685
"dennist685" <dennist685@.discussions.microsoft.com> wrote in message
news:9ABFFC87-5999-4FDE-83D8-84E1CC3BF0E7@.microsoft.com...
>I tried the following question in setup, but didn't get an answer. I think
> not being able to install sqlserver 2000 is a serious problem. I'd
> appreciate any help.
> thanks.
> dennist685
> When I try to install sql server 2000 I get the following message.
> Microsoft sql server 2000 enterprise edition server component is not
> supported on this operating system. Only client components will be
> available
> for installation.
> I have xp pro.
> I have never installed sql server 2000 before.
> If client components are sufficient, how do I configure the security as
> simple as possible. For now, just so I can sign in with all rights, with
> as
> little typing as possible.
> I went this far before cancelling. I clicked setup(I have the msdn DVD
> version). After clicking next a few times it gave me the choice of client
> tools only or connectivity only. The option button for server and client
> tools was greyed out.
> I have adsl and an ethernet card for the adsl, but I am not connected to
> any
> sqlserver 2000.
> Please help.
> dennist685
> Hi,
> The server components of the Enterprise Edition could not be installed on
> xp.
> You should use the Developer Edition if you want to install all components
> on xp.
> If you do not have any server component available, client components only
> will not provide the ability to create databases/tables..
> Lionel
> my answer
> Thanks Lionel. I chose the developer edition, server and client tools.
> However when I get to services accounts I accepted the default - use a
> domain
> user account. It had the username I use for logon to windows -
> dennist685.
> the domain name was my first name in Caps. I tried several passwords, but
> got
> the following error message:
> The logon account cannot be validated for the sql server service. Verify
> that the user name and password entered are correct. The logon attempt
> failed.
> Any ideas?
> dennist685
On xp you can install only the "desktop" or "developer" edition. Find it in
you msdn cd collection.
|||"Giuseppe Battaglia" <beppeb_datogliere@.tiscali.it> wrote in message
news:QSesd.26134$C94.25844@.tornado.fastwebnet.it.. .
> On xp you can install only the "desktop" or "developer" edition. Find it
> in you msdn cd collection.
sorry, I did'nt read all (use > to quote!), use your computer name as domain
name (user name= PCNAME\USERNAME), or use a system account (if you don't
remember your password), or create a new user in xp (in the administrator
group).
|||Thanks Giuseppe,
I was installing the developer edition.
dennist685
"Giuseppe Battaglia" wrote:

> "dennist685" <dennist685@.discussions.microsoft.com> wrote in message
> news:9ABFFC87-5999-4FDE-83D8-84E1CC3BF0E7@.microsoft.com...
> On xp you can install only the "desktop" or "developer" edition. Find it in
> you msdn cd collection.
>
>
|||You can use your own network login for the service accounts on your
workstation but you need to be connected to the domain and you must have
local admin privleges.
Otherwise, the other options Giuseppe provide would be good alternatives.
Remember, if you use your own credentials, you will need to reset the
service account passwords whenever you change your password.
Sincerely,
Anthony Thomas

"dennist685" <dennist685@.discussions.microsoft.com> wrote in message
news:6F2716E5-9592-4E87-9E0D-C461399ADC84@.microsoft.com...
Thanks Giuseppe,
I was installing the developer edition.
dennist685
"Giuseppe Battaglia" wrote:
[vbcol=seagreen]
> "dennist685" <dennist685@.discussions.microsoft.com> wrote in message
> news:9ABFFC87-5999-4FDE-83D8-84E1CC3BF0E7@.microsoft.com...
think[vbcol=seagreen]
with[vbcol=seagreen]
client[vbcol=seagreen]
client[vbcol=seagreen]
on[vbcol=seagreen]
components[vbcol=seagreen]
only[vbcol=seagreen]
but[vbcol=seagreen]
Verify
> On xp you can install only the "desktop" or "developer" edition. Find it
in
> you msdn cd collection.
>
>
|||Thanks Anthony and Giuseppe
But, I can't say I know what you're talking about.
I have no password for the dennist685 xp account. It's the only account,
the only account I want, and I was never asked for a password in the xp pro
installation. I fully installed iis with frontpage extensions.
What do you mean by network login? The login my ISP gave me to connect to
ADSL? I'm not part of any network. Mine is a lone computer connected to the
internet through an ADSL. I don't know what is meant by own credentials.
I also have no idea what this sentence means: You can use your own network
login for the service accounts on your
workstation but you need to be connected to the domain and you must have
local admin privleges.
or how to do it. What I need is just the simplest way to install sqlserver
2000, any edition, on xp pro. given my only account is dennist685, and there
is no password. My ISP account is also named dennist685. To that there is a
password and I tried it with the error above.
You're dealing with a real newbie here. Up to now I've been dealing with
Microsoft Access databases.
Thanks.
dennist685
|||What I really want to know is the following. When I reach the point
specified, what should I type so that the installation proceeds.
Alternatively, what choices should I be making earlier in the installation
so that the screen in question works.
thanks.
dennist685
|||On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
<dennist685@.discussions.microsoft.com> wrote:

>Thanks Anthony and Giuseppe
>But, I can't say I know what you're talking about.
>I have no password for the dennist685 xp account. It's the only account,
>the only account I want, and I was never asked for a password in the xp pro
>installation. I fully installed iis with frontpage extensions.
>What do you mean by network login? The login my ISP gave me to connect to
>ADSL? I'm not part of any network. Mine is a lone computer connected to the
>internet through an ADSL. I don't know what is meant by own credentials.
>I also have no idea what this sentence means: You can use your own network
>login for the service accounts on your
>workstation but you need to be connected to the domain and you must have
>local admin privleges.
> or how to do it. What I need is just the simplest way to install sqlserver
>2000, any edition, on xp pro. given my only account is dennist685, and there
>is no password. My ISP account is also named dennist685. To that there is a
>password and I tried it with the error above.
>You're dealing with a real newbie here. Up to now I've been dealing with
>Microsoft Access databases.
>
Use the "local system" option. That will work. (Unless you limited the
permissions for SYSTEM, which is unlikely)
Joachim.
This post is free post; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
Joachim Verhagen (jcdverha@.xs4all.nl)
WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
|||Joachim,
I got it installed. We got that far. However, when I view server explorer,
after a bunch of databases (all access)I get servers. under servers dennis.
One more indent a bunch of things ending in SQL Servers. Under that, one
indent more, is DENNIS. If I click the box for that, the screen freezes up
for awhile, then I finally get a login box that says
Server Dennis(textbox disabled)
Database blank (textbox disabled)
checkbox, unchecked, use NT integrated security
Login dennist685 (textbox enabled)
Password (blank (textbox enabled)
buttons OK, Cancel, Help
Help is unhelpful
If I click OK, nothing happens
If I click use NT sercurity and then OK, the screen freezes for a minute.
Then I get the message
[DTNETLIB[]ConnectionOpen(Connect(),]SL Server does not exist or access
denied.
dennist685
"Joachim Verhagen" wrote:

> On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
> <dennist685@.discussions.microsoft.com> wrote:
>
> Use the "local system" option. That will work. (Unless you limited the
> permissions for SYSTEM, which is unlikely)
> Joachim.
> --
> This post is free post; you can redistribute it and/or
> modify it under the terms of the GNU General Public License
> as published by the Free Software Foundation; either version 2
> of the License, or (at your option) any later version.
> Joachim Verhagen (jcdverha@.xs4all.nl)
> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
>
|||I don't remember exactly what I did, but it seems installed now with all the
sample databases installed as well. 'Seems' is the operative word.
dennist685
"Joachim Verhagen" wrote:

> On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
> <dennist685@.discussions.microsoft.com> wrote:
>
> Use the "local system" option. That will work. (Unless you limited the
> permissions for SYSTEM, which is unlikely)
> Joachim.
> --
> This post is free post; you can redistribute it and/or
> modify it under the terms of the GNU General Public License
> as published by the Free Software Foundation; either version 2
> of the License, or (at your option) any later version.
> Joachim Verhagen (jcdverha@.xs4all.nl)
> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
>

Can't install sqlserver 2000

I tried the following question in setup, but didn't get an answer. I think
not being able to install sqlserver 2000 is a serious problem. I'd
appreciate any help.
thanks.
dennist685
When I try to install sql server 2000 I get the following message.
Microsoft sql server 2000 enterprise edition server component is not
supported on this operating system. Only client components will be available
for installation.
I have xp pro.
I have never installed sql server 2000 before.
If client components are sufficient, how do I configure the security as
simple as possible. For now, just so I can sign in with all rights, with as
little typing as possible.
I went this far before cancelling. I clicked setup(I have the msdn DVD
version). After clicking next a few times it gave me the choice of client
tools only or connectivity only. The option button for server and client
tools was greyed out.
I have adsl and an ethernet card for the adsl, but I am not connected to any
sqlserver 2000.
Please help.
dennist685
Hi,
The server components of the Enterprise Edition could not be installed on xp.
You should use the Developer Edition if you want to install all components
on xp.
If you do not have any server component available, client components only
will not provide the ability to create databases/tablesâ?¦.
Lionel
my answer
Thanks Lionel. I chose the developer edition, server and client tools.
However when I get to services accounts I accepted the default - use a domain
user account. It had the username I use for logon to windows - dennist685.
the domain name was my first name in Caps. I tried several passwords, but got
the following error message:
The logon account cannot be validated for the sql server service. Verify
that the user name and password entered are correct. The logon attempt
failed.
Any ideas?
dennist685"dennist685" <dennist685@.discussions.microsoft.com> wrote in message
news:9ABFFC87-5999-4FDE-83D8-84E1CC3BF0E7@.microsoft.com...
>I tried the following question in setup, but didn't get an answer. I think
> not being able to install sqlserver 2000 is a serious problem. I'd
> appreciate any help.
> thanks.
> dennist685
> When I try to install sql server 2000 I get the following message.
> Microsoft sql server 2000 enterprise edition server component is not
> supported on this operating system. Only client components will be
> available
> for installation.
> I have xp pro.
> I have never installed sql server 2000 before.
> If client components are sufficient, how do I configure the security as
> simple as possible. For now, just so I can sign in with all rights, with
> as
> little typing as possible.
> I went this far before cancelling. I clicked setup(I have the msdn DVD
> version). After clicking next a few times it gave me the choice of client
> tools only or connectivity only. The option button for server and client
> tools was greyed out.
> I have adsl and an ethernet card for the adsl, but I am not connected to
> any
> sqlserver 2000.
> Please help.
> dennist685
> Hi,
> The server components of the Enterprise Edition could not be installed on
> xp.
> You should use the Developer Edition if you want to install all components
> on xp.
> If you do not have any server component available, client components only
> will not provide the ability to create databases/tables..
> Lionel
> my answer
> Thanks Lionel. I chose the developer edition, server and client tools.
> However when I get to services accounts I accepted the default - use a
> domain
> user account. It had the username I use for logon to windows -
> dennist685.
> the domain name was my first name in Caps. I tried several passwords, but
> got
> the following error message:
> The logon account cannot be validated for the sql server service. Verify
> that the user name and password entered are correct. The logon attempt
> failed.
> Any ideas?
> dennist685
On xp you can install only the "desktop" or "developer" edition. Find it in
you msdn cd collection.|||"Giuseppe Battaglia" <beppeb_datogliere@.tiscali.it> wrote in message
news:QSesd.26134$C94.25844@.tornado.fastwebnet.it...
>> Thanks Lionel. I chose the developer edition, server and client tools.
>> However when I get to services accounts I accepted the default - use a
>> domain
>> user account. It had the username I use for logon to windows -
>> dennist685.
>> the domain name was my first name in Caps. I tried several passwords, but
>> got
>> the following error message:
>> The logon account cannot be validated for the sql server service. Verify
>> that the user name and password entered are correct. The logon attempt
>> failed.
>> Any ideas?
>> dennist685
> On xp you can install only the "desktop" or "developer" edition. Find it
> in you msdn cd collection.
sorry, I did'nt read all (use > to quote!), use your computer name as domain
name (user name= PCNAME\USERNAME), or use a system account (if you don't
remember your password), or create a new user in xp (in the administrator
group).|||Thanks Giuseppe,
I was installing the developer edition.
dennist685
"Giuseppe Battaglia" wrote:
> "dennist685" <dennist685@.discussions.microsoft.com> wrote in message
> news:9ABFFC87-5999-4FDE-83D8-84E1CC3BF0E7@.microsoft.com...
> >I tried the following question in setup, but didn't get an answer. I think
> > not being able to install sqlserver 2000 is a serious problem. I'd
> > appreciate any help.
> >
> > thanks.
> >
> > dennist685
> >
> > When I try to install sql server 2000 I get the following message.
> >
> > Microsoft sql server 2000 enterprise edition server component is not
> > supported on this operating system. Only client components will be
> > available
> > for installation.
> >
> > I have xp pro.
> >
> > I have never installed sql server 2000 before.
> >
> > If client components are sufficient, how do I configure the security as
> > simple as possible. For now, just so I can sign in with all rights, with
> > as
> > little typing as possible.
> >
> > I went this far before cancelling. I clicked setup(I have the msdn DVD
> > version). After clicking next a few times it gave me the choice of client
> > tools only or connectivity only. The option button for server and client
> > tools was greyed out.
> >
> > I have adsl and an ethernet card for the adsl, but I am not connected to
> > any
> > sqlserver 2000.
> >
> > Please help.
> >
> > dennist685
> >
> > Hi,
> >
> > The server components of the Enterprise Edition could not be installed on
> > xp.
> > You should use the Developer Edition if you want to install all components
> > on xp.
> > If you do not have any server component available, client components only
> > will not provide the ability to create databases/tables..
> >
> > Lionel
> >
> > my answer
> >
> > Thanks Lionel. I chose the developer edition, server and client tools.
> > However when I get to services accounts I accepted the default - use a
> > domain
> > user account. It had the username I use for logon to windows -
> > dennist685.
> > the domain name was my first name in Caps. I tried several passwords, but
> > got
> > the following error message:
> >
> > The logon account cannot be validated for the sql server service. Verify
> > that the user name and password entered are correct. The logon attempt
> > failed.
> >
> > Any ideas?
> >
> > dennist685
> On xp you can install only the "desktop" or "developer" edition. Find it in
> you msdn cd collection.
>
>|||You can use your own network login for the service accounts on your
workstation but you need to be connected to the domain and you must have
local admin privleges.
Otherwise, the other options Giuseppe provide would be good alternatives.
Remember, if you use your own credentials, you will need to reset the
service account passwords whenever you change your password.
Sincerely,
Anthony Thomas
"dennist685" <dennist685@.discussions.microsoft.com> wrote in message
news:6F2716E5-9592-4E87-9E0D-C461399ADC84@.microsoft.com...
Thanks Giuseppe,
I was installing the developer edition.
dennist685
"Giuseppe Battaglia" wrote:
> "dennist685" <dennist685@.discussions.microsoft.com> wrote in message
> news:9ABFFC87-5999-4FDE-83D8-84E1CC3BF0E7@.microsoft.com...
> >I tried the following question in setup, but didn't get an answer. I
think
> > not being able to install sqlserver 2000 is a serious problem. I'd
> > appreciate any help.
> >
> > thanks.
> >
> > dennist685
> >
> > When I try to install sql server 2000 I get the following message.
> >
> > Microsoft sql server 2000 enterprise edition server component is not
> > supported on this operating system. Only client components will be
> > available
> > for installation.
> >
> > I have xp pro.
> >
> > I have never installed sql server 2000 before.
> >
> > If client components are sufficient, how do I configure the security as
> > simple as possible. For now, just so I can sign in with all rights,
with
> > as
> > little typing as possible.
> >
> > I went this far before cancelling. I clicked setup(I have the msdn DVD
> > version). After clicking next a few times it gave me the choice of
client
> > tools only or connectivity only. The option button for server and
client
> > tools was greyed out.
> >
> > I have adsl and an ethernet card for the adsl, but I am not connected to
> > any
> > sqlserver 2000.
> >
> > Please help.
> >
> > dennist685
> >
> > Hi,
> >
> > The server components of the Enterprise Edition could not be installed
on
> > xp.
> > You should use the Developer Edition if you want to install all
components
> > on xp.
> > If you do not have any server component available, client components
only
> > will not provide the ability to create databases/tables..
> >
> > Lionel
> >
> > my answer
> >
> > Thanks Lionel. I chose the developer edition, server and client tools.
> > However when I get to services accounts I accepted the default - use a
> > domain
> > user account. It had the username I use for logon to windows -
> > dennist685.
> > the domain name was my first name in Caps. I tried several passwords,
but
> > got
> > the following error message:
> >
> > The logon account cannot be validated for the sql server service.
Verify
> > that the user name and password entered are correct. The logon attempt
> > failed.
> >
> > Any ideas?
> >
> > dennist685
> On xp you can install only the "desktop" or "developer" edition. Find it
in
> you msdn cd collection.
>
>|||Thanks Anthony and Giuseppe
But, I can't say I know what you're talking about.
I have no password for the dennist685 xp account. It's the only account,
the only account I want, and I was never asked for a password in the xp pro
installation. I fully installed iis with frontpage extensions.
What do you mean by network login? The login my ISP gave me to connect to
ADSL? I'm not part of any network. Mine is a lone computer connected to the
internet through an ADSL. I don't know what is meant by own credentials.
I also have no idea what this sentence means: You can use your own network
login for the service accounts on your
workstation but you need to be connected to the domain and you must have
local admin privleges.
or how to do it. What I need is just the simplest way to install sqlserver
2000, any edition, on xp pro. given my only account is dennist685, and there
is no password. My ISP account is also named dennist685. To that there is a
password and I tried it with the error above.
You're dealing with a real newbie here. Up to now I've been dealing with
Microsoft Access databases.
Thanks.
dennist685|||What I really want to know is the following. When I reach the point
specified, what should I type so that the installation proceeds.
Alternatively, what choices should I be making earlier in the installation
so that the screen in question works.
thanks.
dennist685|||On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
<dennist685@.discussions.microsoft.com> wrote:
>Thanks Anthony and Giuseppe
>But, I can't say I know what you're talking about.
>I have no password for the dennist685 xp account. It's the only account,
>the only account I want, and I was never asked for a password in the xp pro
>installation. I fully installed iis with frontpage extensions.
>What do you mean by network login? The login my ISP gave me to connect to
>ADSL? I'm not part of any network. Mine is a lone computer connected to the
>internet through an ADSL. I don't know what is meant by own credentials.
>I also have no idea what this sentence means: You can use your own network
>login for the service accounts on your
>workstation but you need to be connected to the domain and you must have
>local admin privleges.
> or how to do it. What I need is just the simplest way to install sqlserver
>2000, any edition, on xp pro. given my only account is dennist685, and there
>is no password. My ISP account is also named dennist685. To that there is a
>password and I tried it with the error above.
>You're dealing with a real newbie here. Up to now I've been dealing with
>Microsoft Access databases.
>
Use the "local system" option. That will work. (Unless you limited the
permissions for SYSTEM, which is unlikely)
Joachim.
--
This post is free post; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
Joachim Verhagen (jcdverha@.xs4all.nl)
WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)|||Joachim,
I got it installed. We got that far. However, when I view server explorer,
after a bunch of databases (all access)I get servers. under servers dennis.
One more indent a bunch of things ending in SQL Servers. Under that, one
indent more, is DENNIS. If I click the box for that, the screen freezes up
for awhile, then I finally get a login box that says
Server Dennis(textbox disabled)
Database blank (textbox disabled)
checkbox, unchecked, use NT integrated security
Login dennist685 (textbox enabled)
Password (blank (textbox enabled)
buttons OK, Cancel, Help
Help is unhelpful
If I click OK, nothing happens
If I click use NT sercurity and then OK, the screen freezes for a minute.
Then I get the message
[DTNETLIB[]ConnectionOpen(Connect(),]SL Server does not exist or access
denied.
dennist685
"Joachim Verhagen" wrote:
> On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
> <dennist685@.discussions.microsoft.com> wrote:
> >Thanks Anthony and Giuseppe
> >
> >But, I can't say I know what you're talking about.
> >
> >I have no password for the dennist685 xp account. It's the only account,
> >the only account I want, and I was never asked for a password in the xp pro
> >installation. I fully installed iis with frontpage extensions.
> >What do you mean by network login? The login my ISP gave me to connect to
> >ADSL? I'm not part of any network. Mine is a lone computer connected to the
> >internet through an ADSL. I don't know what is meant by own credentials.
> >
> >I also have no idea what this sentence means: You can use your own network
> >login for the service accounts on your
> >workstation but you need to be connected to the domain and you must have
> >local admin privleges.
> > or how to do it. What I need is just the simplest way to install sqlserver
> >2000, any edition, on xp pro. given my only account is dennist685, and there
> >is no password. My ISP account is also named dennist685. To that there is a
> >password and I tried it with the error above.
> >
> >You're dealing with a real newbie here. Up to now I've been dealing with
> >Microsoft Access databases.
> >
> Use the "local system" option. That will work. (Unless you limited the
> permissions for SYSTEM, which is unlikely)
> Joachim.
> --
> This post is free post; you can redistribute it and/or
> modify it under the terms of the GNU General Public License
> as published by the Free Software Foundation; either version 2
> of the License, or (at your option) any later version.
> Joachim Verhagen (jcdverha@.xs4all.nl)
> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
>|||I don't remember exactly what I did, but it seems installed now with all the
sample databases installed as well. 'Seems' is the operative word.
dennist685
"Joachim Verhagen" wrote:
> On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
> <dennist685@.discussions.microsoft.com> wrote:
> >Thanks Anthony and Giuseppe
> >
> >But, I can't say I know what you're talking about.
> >
> >I have no password for the dennist685 xp account. It's the only account,
> >the only account I want, and I was never asked for a password in the xp pro
> >installation. I fully installed iis with frontpage extensions.
> >What do you mean by network login? The login my ISP gave me to connect to
> >ADSL? I'm not part of any network. Mine is a lone computer connected to the
> >internet through an ADSL. I don't know what is meant by own credentials.
> >
> >I also have no idea what this sentence means: You can use your own network
> >login for the service accounts on your
> >workstation but you need to be connected to the domain and you must have
> >local admin privleges.
> > or how to do it. What I need is just the simplest way to install sqlserver
> >2000, any edition, on xp pro. given my only account is dennist685, and there
> >is no password. My ISP account is also named dennist685. To that there is a
> >password and I tried it with the error above.
> >
> >You're dealing with a real newbie here. Up to now I've been dealing with
> >Microsoft Access databases.
> >
> Use the "local system" option. That will work. (Unless you limited the
> permissions for SYSTEM, which is unlikely)
> Joachim.
> --
> This post is free post; you can redistribute it and/or
> modify it under the terms of the GNU General Public License
> as published by the Free Software Foundation; either version 2
> of the License, or (at your option) any later version.
> Joachim Verhagen (jcdverha@.xs4all.nl)
> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
>|||SQLServer always installs with the sample databases, so you must have them.
The most likely cause is that SQLServer is not running. (SQLServer is a
service, not just a file like MSaccess). At the right of the taskbar you
should have an icon looking like a tower model computer with a circle on it.
If the circle shows a green arrow, SQLServer is running, if it shows a red
square it is not. If you see a red square you should double click the icon
and start SQLServer.
SQLServer comes with a tool called the enterprise manager. Start it up from
the start menu->programs->Microsoft SQLServer. You can easily manage
SQLServer with it. Navigate around and use right-clicks to see what actions
you can do.
Joachim.
On Mon, 6 Dec 2004 03:35:05 -0800, "dennist685"
<dennist685@.discussions.microsoft.com> wrote:
>I don't remember exactly what I did, but it seems installed now with all the
>sample databases installed as well. 'Seems' is the operative word.
>dennist685
>"Joachim Verhagen" wrote:
>> On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
>> <dennist685@.discussions.microsoft.com> wrote:
>> >Thanks Anthony and Giuseppe
>> >
>> >But, I can't say I know what you're talking about.
>> >
>> >I have no password for the dennist685 xp account. It's the only account,
>> >the only account I want, and I was never asked for a password in the xp pro
>> >installation. I fully installed iis with frontpage extensions.
>> >What do you mean by network login? The login my ISP gave me to connect to
>> >ADSL? I'm not part of any network. Mine is a lone computer connected to the
>> >internet through an ADSL. I don't know what is meant by own credentials.
>> >
>> >I also have no idea what this sentence means: You can use your own network
>> >login for the service accounts on your
>> >workstation but you need to be connected to the domain and you must have
>> >local admin privleges.
>> > or how to do it. What I need is just the simplest way to install sqlserver
>> >2000, any edition, on xp pro. given my only account is dennist685, and there
>> >is no password. My ISP account is also named dennist685. To that there is a
>> >password and I tried it with the error above.
>> >
>> >You're dealing with a real newbie here. Up to now I've been dealing with
>> >Microsoft Access databases.
>> >
>> Use the "local system" option. That will work. (Unless you limited the
>> permissions for SYSTEM, which is unlikely)
>> Joachim.
>> --
>> This post is free post; you can redistribute it and/or
>> modify it under the terms of the GNU General Public License
>> as published by the Free Software Foundation; either version 2
>> of the License, or (at your option) any later version.
>> Joachim Verhagen (jcdverha@.xs4all.nl)
>> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
--
This post is free post; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
Joachim Verhagen (jcdverha@.xs4all.nl)
WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)|||I hate to tell you, Joachim, but the tower doesn't appear in my taskbar.
What does that mean?
dennist685
"Joachim Verhagen" wrote:
> SQLServer always installs with the sample databases, so you must have them.
> The most likely cause is that SQLServer is not running. (SQLServer is a
> service, not just a file like MSaccess). At the right of the taskbar you
> should have an icon looking like a tower model computer with a circle on it.
> If the circle shows a green arrow, SQLServer is running, if it shows a red
> square it is not. If you see a red square you should double click the icon
> and start SQLServer.
> SQLServer comes with a tool called the enterprise manager. Start it up from
> the start menu->programs->Microsoft SQLServer. You can easily manage
> SQLServer with it. Navigate around and use right-clicks to see what actions
> you can do.
> Joachim.
>
> On Mon, 6 Dec 2004 03:35:05 -0800, "dennist685"
> <dennist685@.discussions.microsoft.com> wrote:
> >I don't remember exactly what I did, but it seems installed now with all the
> >sample databases installed as well. 'Seems' is the operative word.
> >
> >dennist685
> >
> >"Joachim Verhagen" wrote:
> >
> >> On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
> >> <dennist685@.discussions.microsoft.com> wrote:
> >>
> >> >Thanks Anthony and Giuseppe
> >> >
> >> >But, I can't say I know what you're talking about.
> >> >
> >> >I have no password for the dennist685 xp account. It's the only account,
> >> >the only account I want, and I was never asked for a password in the xp pro
> >> >installation. I fully installed iis with frontpage extensions.
> >> >What do you mean by network login? The login my ISP gave me to connect to
> >> >ADSL? I'm not part of any network. Mine is a lone computer connected to the
> >> >internet through an ADSL. I don't know what is meant by own credentials.
> >> >
> >> >I also have no idea what this sentence means: You can use your own network
> >> >login for the service accounts on your
> >> >workstation but you need to be connected to the domain and you must have
> >> >local admin privleges.
> >> > or how to do it. What I need is just the simplest way to install sqlserver
> >> >2000, any edition, on xp pro. given my only account is dennist685, and there
> >> >is no password. My ISP account is also named dennist685. To that there is a
> >> >password and I tried it with the error above.
> >> >
> >> >You're dealing with a real newbie here. Up to now I've been dealing with
> >> >Microsoft Access databases.
> >> >
> >>
> >> Use the "local system" option. That will work. (Unless you limited the
> >> permissions for SYSTEM, which is unlikely)
> >>
> >> Joachim.
> >>
> >> --
> >> This post is free post; you can redistribute it and/or
> >> modify it under the terms of the GNU General Public License
> >> as published by the Free Software Foundation; either version 2
> >> of the License, or (at your option) any later version.
> >>
> >> Joachim Verhagen (jcdverha@.xs4all.nl)
> >> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
> >>
> --
> This post is free post; you can redistribute it and/or
> modify it under the terms of the GNU General Public License
> as published by the Free Software Foundation; either version 2
> of the License, or (at your option) any later version.
> Joachim Verhagen (jcdverha@.xs4all.nl)
> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
>|||I rebooted my system and the tower was right there in the taskbar.
thanks muchly,
dennist685
"Joachim Verhagen" wrote:
> SQLServer always installs with the sample databases, so you must have them.
> The most likely cause is that SQLServer is not running. (SQLServer is a
> service, not just a file like MSaccess). At the right of the taskbar you
> should have an icon looking like a tower model computer with a circle on it.
> If the circle shows a green arrow, SQLServer is running, if it shows a red
> square it is not. If you see a red square you should double click the icon
> and start SQLServer.
> SQLServer comes with a tool called the enterprise manager. Start it up from
> the start menu->programs->Microsoft SQLServer. You can easily manage
> SQLServer with it. Navigate around and use right-clicks to see what actions
> you can do.
> Joachim.
>
> On Mon, 6 Dec 2004 03:35:05 -0800, "dennist685"
> <dennist685@.discussions.microsoft.com> wrote:
> >I don't remember exactly what I did, but it seems installed now with all the
> >sample databases installed as well. 'Seems' is the operative word.
> >
> >dennist685
> >
> >"Joachim Verhagen" wrote:
> >
> >> On Sun, 5 Dec 2004 03:13:01 -0800, "dennist685"
> >> <dennist685@.discussions.microsoft.com> wrote:
> >>
> >> >Thanks Anthony and Giuseppe
> >> >
> >> >But, I can't say I know what you're talking about.
> >> >
> >> >I have no password for the dennist685 xp account. It's the only account,
> >> >the only account I want, and I was never asked for a password in the xp pro
> >> >installation. I fully installed iis with frontpage extensions.
> >> >What do you mean by network login? The login my ISP gave me to connect to
> >> >ADSL? I'm not part of any network. Mine is a lone computer connected to the
> >> >internet through an ADSL. I don't know what is meant by own credentials.
> >> >
> >> >I also have no idea what this sentence means: You can use your own network
> >> >login for the service accounts on your
> >> >workstation but you need to be connected to the domain and you must have
> >> >local admin privleges.
> >> > or how to do it. What I need is just the simplest way to install sqlserver
> >> >2000, any edition, on xp pro. given my only account is dennist685, and there
> >> >is no password. My ISP account is also named dennist685. To that there is a
> >> >password and I tried it with the error above.
> >> >
> >> >You're dealing with a real newbie here. Up to now I've been dealing with
> >> >Microsoft Access databases.
> >> >
> >>
> >> Use the "local system" option. That will work. (Unless you limited the
> >> permissions for SYSTEM, which is unlikely)
> >>
> >> Joachim.
> >>
> >> --
> >> This post is free post; you can redistribute it and/or
> >> modify it under the terms of the GNU General Public License
> >> as published by the Free Software Foundation; either version 2
> >> of the License, or (at your option) any later version.
> >>
> >> Joachim Verhagen (jcdverha@.xs4all.nl)
> >> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
> >>
> --
> This post is free post; you can redistribute it and/or
> modify it under the terms of the GNU General Public License
> as published by the Free Software Foundation; either version 2
> of the License, or (at your option) any later version.
> Joachim Verhagen (jcdverha@.xs4all.nl)
> WWW http://www.xs4all.nl/~jcdverha/ (Science Jokes)
>

Can't install sqlncli.msi

When trying to install sqlncli.msi on Windows XP SP2 I get the following
error
"The system administrator has set policies to prevent this installation"
Given that I am the system administrator ...
What do I need to do to resolve this ?
What policies have been set ?
Can you execute any msi? Or is it just with this windows
intaller package?
Try checking the local policies on the PC for windows
installer using the group policy editor snap in.
From the run command, run gpedit.msc
Go to Computer Configuration, then to Administrative
templates, then to Windows Components, then to Windows
Installer.
You could also be hitting this:
http://support.microsoft.com/kb/322963
Did you check the windows installer service on the PC
itself? Is it manual or running?
Did you also try updating your windows installer?
http://support.microsoft.com/kb/893803
-Sue
On Tue, 19 Jun 2007 12:41:14 -0600, "Michael Tissington"
<mtissington@.newsgroups.nospam> wrote:

>When trying to install sqlncli.msi on Windows XP SP2 I get the following
>error
>"The system administrator has set policies to prevent this installation"
>Given that I am the system administrator ...
>What do I need to do to resolve this ?
>What policies have been set ?

Can't install sqlncli.msi

When trying to install sqlncli.msi on Windows XP SP2 I get the following
error
"The system administrator has set policies to prevent this installation"
Given that I am the system administrator ...
What do I need to do to resolve this ?
What policies have been set ?Can you execute any msi? Or is it just with this windows
intaller package?
Try checking the local policies on the PC for windows
installer using the group policy editor snap in.
From the run command, run gpedit.msc
Go to Computer Configuration, then to Administrative
templates, then to Windows Components, then to Windows
Installer.
You could also be hitting this:
http://support.microsoft.com/kb/322963
Did you check the windows installer service on the PC
itself? Is it manual or running?
Did you also try updating your windows installer?
http://support.microsoft.com/kb/893803
-Sue
On Tue, 19 Jun 2007 12:41:14 -0600, "Michael Tissington"
<mtissington@.newsgroups.nospam> wrote:

>When trying to install sqlncli.msi on Windows XP SP2 I get the following
>error
>"The system administrator has set policies to prevent this installation"
>Given that I am the system administrator ...
>What do I need to do to resolve this ?
>What policies have been set ?

Can't install sqlncli.msi

When trying to install sqlncli.msi on Windows XP SP2 I get the following
error
"The system administrator has set policies to prevent this installation"
Given that I am the system administrator ...
What do I need to do to resolve this ?
What policies have been set ?
Can you execute any msi? Or is it just with this windows
intaller package?
Try checking the local policies on the PC for windows
installer using the group policy editor snap in.
From the run command, run gpedit.msc
Go to Computer Configuration, then to Administrative
templates, then to Windows Components, then to Windows
Installer.
You could also be hitting this:
http://support.microsoft.com/kb/322963
Did you check the windows installer service on the PC
itself? Is it manual or running?
Did you also try updating your windows installer?
http://support.microsoft.com/kb/893803
-Sue
On Tue, 19 Jun 2007 12:41:14 -0600, "Michael Tissington"
<mtissington@.newsgroups.nospam> wrote:

>When trying to install sqlncli.msi on Windows XP SP2 I get the following
>error
>"The system administrator has set policies to prevent this installation"
>Given that I am the system administrator ...
>What do I need to do to resolve this ?
>What policies have been set ?

cant install SQL Web Data Administrator

Hi

I am using Web Developer 2005 Express. I am trying to install the SQL Web Data Administrator (setup.msi), but it gives an error message saying that I need to install Framework 1.1, BUT I already have version 2, so no-go for me there.

Also I have been trying to install the Cassini version with zero luck. When I run the build.bat file I get the csc and gacutil errors. However, when I set up the Environmental variable PATH within My Computer\Properties\Advanced\Environmental Variables\user Variables as per the instructions on the Cassini discussion forum, no change, I do not get 200 bucks or pass GO .

Please tell me I am being stupid

Dose your system fit all the requirements?

System Requirements

Supported Operating Systems:Windows 2000

Cant Install SQL Standard Edition on VISTA Ultimate

I ve been coping with the follwing Error for 2 months , and i desperately need sb helping me out with a practical solution. the error has become a real pain in the neck 4 me .I want to install SQL 2005 standard edition on a vista ultimate however the error appears at almost the end of installation proceess .and the sql server database services fails to be installed on vista? and doesnt get a check mark. this is the Error:

sQL Server Setup failed to execute a command for server configuration. The error was [Microsoft][SQL Native Client][SQL Server]Windows NT user or group 'computer-name\SQLServer2005MSSQLUser$computer-name$MSSQLSERVER' not found. Check the name again..

It sounds to me like you are running into the problem that is described in the following article:

http://support.microsoft.com/kb/932593/en-us

You can try following the instructions in that article to obtain the fix, or try using the workaround from the article. If neither of these helps resolve your problem, please follow up by posting to the SQL Server Setup forum, not the MSDN and TechNet Feedback forum. The SQL Server Setup forum is here:

http://forums.microsoft.com/TechNet/ShowForum.aspx?ForumID=95&SiteID=17

hope this helps,

Tai Yee

SQL Server

Cant install SQL Server on Windows Server2003

I try to install Microsoft SQL Server 2000 Enterprise Edition on Windows Server 2003 Web Editon, but fail...

Step 1: Double the Autorun
Step 2: Click on SQL Server Components
Step 3: Click Install Database Server
The installation just disappear here. There is no response from the System.
If I use the same SQL Server disk install on Windows Advanced Server 2000,
the installation work fine.

Appreciate help....As far as I know, there is no way to install SQL Server on the Web Edition of 2003.

Jason Bentley

can't install SQL Server on a partition other than c:\

Hello --
My laptop drive is partitioned into c: and e:. I want to install on
e:.
During Install, in Feature Selection, when I click the icon for Client
Components, the Browse button to allow an install path other than c:
\... is disabled, indicating that the shared path has already been
configured).
Can someone tell me
1 - what I installed prior that does not allow me to install the
complete SQL Server on e:?
2 - what must I uninstall and then reinstall, and, in what sequence,
to be able to install on e:?
Thanks in advance for any help.
Larry MehlYou can't install the whole SQL Server related files into your "e:" drive.
Some files are installed to the default path "C:\Program Files\Microsoft SQL
Server...". Generally, you can say "Common components like SSIS, Client
Components etc. will be installed to this default path"
--
Ekrem Önsoy
"mehlREMOVETHIS@.cyvest.com" <mehl@.cyvest.com> wrote in message
news:5581b71e-f6de-4d58-833e-e931a8d5c3b3@.t12g2000prg.googlegroups.com...
> Hello --
> My laptop drive is partitioned into c: and e:. I want to install on
> e:.
> During Install, in Feature Selection, when I click the icon for Client
> Components, the Browse button to allow an install path other than c:
> \... is disabled, indicating that the shared path has already been
> configured).
> Can someone tell me
> 1 - what I installed prior that does not allow me to install the
> complete SQL Server on e:?
> 2 - what must I uninstall and then reinstall, and, in what sequence,
> to be able to install on e:?
> Thanks in advance for any help.
> Larry Mehl
>
>|||Unfortunately, that's one of the fundamentally flawed design choices that SQL
Server seems to be stuck with. It's fundamentally flawed because this forces
the system to store states on the local machine. Not being able to choose an
arbitrary drive is just a minor inconvenience in comparison.
Linchi
"mehlREMOVETHIS@.cyvest.com" wrote:
> Hello --
> My laptop drive is partitioned into c: and e:. I want to install on
> e:.
> During Install, in Feature Selection, when I click the icon for Client
> Components, the Browse button to allow an install path other than c:
> \... is disabled, indicating that the shared path has already been
> configured).
> Can someone tell me
> 1 - what I installed prior that does not allow me to install the
> complete SQL Server on e:?
> 2 - what must I uninstall and then reinstall, and, in what sequence,
> to be able to install on e:?
> Thanks in advance for any help.
> Larry Mehl
>
>|||On May 4, 2:09 am, Ekrem =D6nsoy <ek...@.compecta.com> wrote:
> You can't install the whole SQL Server related files into your "e:" drive.=
> Some files are installed to the default path "C:\Program Files\Microsoft S=QL
> Server...". Generally, you can say "Common components like SSIS, Client
> Components etc. will be installed to this default path"
> --
> Ekrem =D6nsoy
> "mehlREMOVET...@.cyvest.com" <m...@.cyvest.com> wrote in message
> news:5581b71e-f6de-4d58-833e-e931a8d5c3b3@.t12g2000prg.googlegroups.com...
> > Hello --
> > My laptop drive is partitioned into c: and e:. I want to install on
> > e:.
> > During Install, in Feature Selection, when I click the icon for Client
> > Components, the Browse button to allow an install path other than c:
> > \... is disabled, indicating that the shared path has already been
> > configured).
> > Can someone tell me
> > 1 - what I installed prior that does not allow me to install the
> > complete SQL Server on e:?
> > 2 - what must I uninstall and then reinstall, and, in what sequence,
> > to be able to install on e:?
> > Thanks in advance for any help.
> > Larry Mehl
Ekrem --
Thank you.
How do I install "Common components like SSIS, Client Components
etc. ... to the default path" so that I can then install the remaining
part of SQL Server to my "e:" drive?
Do I execute the install process twice ... so that
- I first install the common components (in c:) and
- then install I install the remaining components in e: ?
Is it only the common components that cause this, or was it the
installation of other applications such as .NET, Document Explorer,
2005 Samples, Native Client, Setup Support Files, VSS Writer that
installed into c: and are consequently causing this limitation?
If I must, I will enlarge the c: partition to allow installation of
everything into c: What partition manager do you recommend for this?
I will appreciate any further information.
Larry Mehl|||You can install services and components to different paths at once.
In SQL Server Setup, click Advanced button in Components to Install window.
Click on the item and then click the Browse button to install it to a
different path in the Feature Selection window.
For example you can install Database Engine, Analysis Services, Reporting
Services to a different path, but you can't change the path of Documentation
and Samples or Client Components...
--
Ekrem Önsoy
"mehlREMOVETHIS@.cyvest.com" <mehl@.cyvest.com> wrote in message
news:24957b8a-c6ce-426e-9221-04e844f32777@.t12g2000prg.googlegroups.com...
On May 4, 2:09 am, Ekrem Önsoy <ek...@.compecta.com> wrote:
> You can't install the whole SQL Server related files into your "e:" drive.
> Some files are installed to the default path "C:\Program Files\Microsoft
> SQL
> Server...". Generally, you can say "Common components like SSIS, Client
> Components etc. will be installed to this default path"
> --
> Ekrem Önsoy
> "mehlREMOVET...@.cyvest.com" <m...@.cyvest.com> wrote in message
> news:5581b71e-f6de-4d58-833e-e931a8d5c3b3@.t12g2000prg.googlegroups.com...
> > Hello --
> > My laptop drive is partitioned into c: and e:. I want to install on
> > e:.
> > During Install, in Feature Selection, when I click the icon for Client
> > Components, the Browse button to allow an install path other than c:
> > \... is disabled, indicating that the shared path has already been
> > configured).
> > Can someone tell me
> > 1 - what I installed prior that does not allow me to install the
> > complete SQL Server on e:?
> > 2 - what must I uninstall and then reinstall, and, in what sequence,
> > to be able to install on e:?
> > Thanks in advance for any help.
> > Larry Mehl
Ekrem --
Thank you.
How do I install "Common components like SSIS, Client Components
etc. ... to the default path" so that I can then install the remaining
part of SQL Server to my "e:" drive?
Do I execute the install process twice ... so that
- I first install the common components (in c:) and
- then install I install the remaining components in e: ?
Is it only the common components that cause this, or was it the
installation of other applications such as .NET, Document Explorer,
2005 Samples, Native Client, Setup Support Files, VSS Writer that
installed into c: and are consequently causing this limitation?
If I must, I will enlarge the c: partition to allow installation of
everything into c: What partition manager do you recommend for this?
I will appreciate any further information.
Larry Mehl|||On May 4, 12:04 pm, Ekrem =D6nsoy <ek...@.compecta.com> wrote:
> You can install services and components to different paths at once.
> In SQL Server Setup, click Advanced button in Components to Install window=.
> Click on the item and then click the Browse button to install it to a
> different path in the Feature Selection window.
> For example you can install Database Engine, Analysis Services, Reporting
> Services to a different path, but you can't change the path of Documentati=on
> and Samples or Client Components...
> --
> Ekrem =D6nsoy
> "mehlREMOVET...@.cyvest.com" <m...@.cyvest.com> wrote in message
> news:24957b8a-c6ce-426e-9221-04e844f32777@.t12g2000prg.googlegroups.com...
> On May 4, 2:09 am, Ekrem =D6nsoy <ek...@.compecta.com> wrote:
>
> > You can't install the whole SQL Server related files into your "e:" driv=e.
> > Some files are installed to the default path "C:\Program Files\Microsoft=
> > SQL
> > Server...". Generally, you can say "Common components like SSIS, Client
> > Components etc. will be installed to this default path"
> > --
> > Ekrem =D6nsoy
> > "mehlREMOVET...@.cyvest.com" <m...@.cyvest.com> wrote in message
> >news:5581b71e-f6de-4d58-833e-e931a8d5c3b3@.t12g2000prg.googlegroups.com...=
> > > Hello --
> > > My laptop drive is partitioned into c: and e:. I want to install on
> > > e:.
> > > During Install, in Feature Selection, when I click the icon for Client=
> > > Components, the Browse button to allow an install path other than c:
> > > \... is disabled, indicating that the shared path has already been
> > > configured).
> > > Can someone tell me
> > > 1 - what I installed prior that does not allow me to install the
> > > complete SQL Server on e:?
> > > 2 - what must I uninstall and then reinstall, and, in what sequence,
> > > to be able to install on e:?
> > > Thanks in advance for any help.
> > > Larry Mehl
> Ekrem --
> Thank you.
> How do I install "Common components like SSIS, Client Components
> etc. ... to the default path" so that I can then install the remaining
> part of SQL Server to my "e:" drive?
> Do I execute the install process twice ... so that
> - I first install the common components (in c:) and
> - then install I install the remaining components in e: ?
> Is it only the common components that cause this, or was it the
> installation of other applications such as .NET, Document Explorer,
> 2005 Samples, Native Client, Setup Support Files, VSS Writer that
> installed into c: and are consequently causing this limitation?
> If I must, I will enlarge the c: partition to allow installation of
> everything into c: What partition manager do you recommend for this?
> I will appreciate any further information.
> Larry Mehl
Ekrem --
Thank you for the method.
Linchi -- Thanks for responding. His response seems to conflict with
yours. What do you think?
Larry|||And just to elaborate, some of the components/items are customizable, some
are not.
Also I don't see how Linchi's reply conflicts with anything else that has
been stated in this thread.
On 5/4/08 3:04 PM, in article
6C568227-DB0D-428C-AF70-BD0AC2BE835E@.microsoft.com, "Ekrem Önsoy"
<ekrem@.compecta.com> wrote:
> You can install services and components to different paths at once.
> In SQL Server Setup, click Advanced button in Components to Install window.
> Click on the item and then click the Browse button to install it to a
> different path in the Feature Selection window.
> For example you can install Database Engine, Analysis Services, Reporting
> Services to a different path, but you can't change the path of Documentation
> and Samples or Client Components...|||To be clearer, what is the confliction do you think?
--
Ekrem Önsoy
"mehlREMOVETHIS@.cyvest.com" <mehl@.cyvest.com> wrote in message
news:ef59ea4d-a2e7-4cb1-af9a-8475dc81f80f@.j9g2000prn.googlegroups.com...
On May 4, 12:04 pm, Ekrem Önsoy <ek...@.compecta.com> wrote:
> You can install services and components to different paths at once.
> In SQL Server Setup, click Advanced button in Components to Install
> window.
> Click on the item and then click the Browse button to install it to a
> different path in the Feature Selection window.
> For example you can install Database Engine, Analysis Services, Reporting
> Services to a different path, but you can't change the path of
> Documentation
> and Samples or Client Components...
> --
> Ekrem Önsoy
> "mehlREMOVET...@.cyvest.com" <m...@.cyvest.com> wrote in message
> news:24957b8a-c6ce-426e-9221-04e844f32777@.t12g2000prg.googlegroups.com...
> On May 4, 2:09 am, Ekrem Önsoy <ek...@.compecta.com> wrote:
>
> > You can't install the whole SQL Server related files into your "e:"
> > drive.
> > Some files are installed to the default path "C:\Program Files\Microsoft
> > SQL
> > Server...". Generally, you can say "Common components like SSIS, Client
> > Components etc. will be installed to this default path"
> > --
> > Ekrem Önsoy
> > "mehlREMOVET...@.cyvest.com" <m...@.cyvest.com> wrote in message
> >news:5581b71e-f6de-4d58-833e-e931a8d5c3b3@.t12g2000prg.googlegroups.com...
> > > Hello --
> > > My laptop drive is partitioned into c: and e:. I want to install on
> > > e:.
> > > During Install, in Feature Selection, when I click the icon for Client
> > > Components, the Browse button to allow an install path other than c:
> > > \... is disabled, indicating that the shared path has already been
> > > configured).
> > > Can someone tell me
> > > 1 - what I installed prior that does not allow me to install the
> > > complete SQL Server on e:?
> > > 2 - what must I uninstall and then reinstall, and, in what sequence,
> > > to be able to install on e:?
> > > Thanks in advance for any help.
> > > Larry Mehl
> Ekrem --
> Thank you.
> How do I install "Common components like SSIS, Client Components
> etc. ... to the default path" so that I can then install the remaining
> part of SQL Server to my "e:" drive?
> Do I execute the install process twice ... so that
> - I first install the common components (in c:) and
> - then install I install the remaining components in e: ?
> Is it only the common components that cause this, or was it the
> installation of other applications such as .NET, Document Explorer,
> 2005 Samples, Native Client, Setup Support Files, VSS Writer that
> installed into c: and are consequently causing this limitation?
> If I must, I will enlarge the c: partition to allow installation of
> everything into c: What partition manager do you recommend for this?
> I will appreciate any further information.
> Larry Mehl
Ekrem --
Thank you for the method.
Linchi -- Thanks for responding. His response seems to conflict with
yours. What do you think?
Larry