 |
|
 |
|
Next: How to install MS virtual server 2005
|
| Author |
Message |
External

Since: Feb 12, 2008 Posts: 3
|
(Msg. 1) Posted: Tue Feb 12, 2008 11:01 am
Post subject: UPGRADE FROM SP3a TO SP4 ERROR Archived from groups: microsoft>public>sqlserver>msde (more info?)
|
|
|
Hello,
I need to upgrade a MSDE from SP3a to SP4 but I can't. The server is a
W2003Standard SP2.
I notice that the install log has several return values 3 wich means
problems:
"MsiEvaluateCondition for VersionNT returned TRUE
End Function MyMsiEvaluateCondition
An error was encountered during connection to server: 1
Ending custom action UpgDetectBlankSaLogin().
Action ended 14:04:51:
UpgDetectBlankSaLogin.2D02443E_7002_4C0B_ABC9_EAB2C064397B. Return value 3."
I search in the log file the value 3 and I see too one link to support
http://support.microsoft.com?kbid=830477, but this link hasn't relation for
the error of above "UpgDetectBlankSaLogin".
Solutions?
Regards,
Carlos Pastor >> Stay informed about: UPGRADE FROM SP3a TO SP4 ERROR |
|
| Back to top |
|
 |  |
External

Since: Sep 13, 2003 Posts: 851
|
(Msg. 2) Posted: Wed Feb 13, 2008 9:00 am
Post subject: Re: UPGRADE FROM SP3a TO SP4 ERROR [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
hi Carlos,
Carlos Pastor wrote:
> Hello,
>
> I need to upgrade a MSDE from SP3a to SP4 but I can't. The server is a
> W2003Standard SP2.
>
> I notice that the install log has several return values 3 wich means
> problems:
>
> "MsiEvaluateCondition for VersionNT returned TRUE
> End Function MyMsiEvaluateCondition
> An error was encountered during connection to server: 1
> Ending custom action UpgDetectBlankSaLogin().
> Action ended 14:04:51:
> UpgDetectBlankSaLogin.2D02443E_7002_4C0B_ABC9_EAB2C064397B. Return
> value 3."
you should provide the additional parameter
SAPWD=the_password
to your call to the MSDE boostrap installer..
--
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz http://italy.mvps.org
DbaMgr2k ver 0.21.1 - DbaMgr ver 0.65.1 and further SQL Tools
--------- remove DMO to reply >> Stay informed about: UPGRADE FROM SP3a TO SP4 ERROR |
|
| Back to top |
|
 |  |
External

Since: Feb 12, 2008 Posts: 3
|
(Msg. 3) Posted: Wed Feb 13, 2008 12:00 pm
Post subject: Re: UPGRADE FROM SP3a TO SP4 ERROR [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Hi Andrea,
The instaler has deleted the user "sa" fro the table "model" and from my
table.
The user "sa" has a password that I has put, but I can't connect with this
MSDE SQL how sa from SQL administrator , I need to connect how Windows
autentication. The sa user is broked. I have an aplication that can change
the password of sa, and I do this cange and the result is correct, but I
can't connect how sa.
If I desinstall the MSDE and I install sp4 from cleaner is not problem, but
I lose my table and my data.
The sentence to upgrade this MSDE is this:
setup /upgradesp sqlrun SECURITYMODE=SQL UPGRADEUSER=sa UPGRADEPWD=(MY
PASSWORD) /L*v C:\MSDELog.log
This is correct?
Regards,
Carlos Pastor
"Andrea Montanari" escribió en el mensaje
> hi Carlos,
> Carlos Pastor wrote:
>> Hello,
>>
>> I need to upgrade a MSDE from SP3a to SP4 but I can't. The server is a
>> W2003Standard SP2.
>>
>> I notice that the install log has several return values 3 wich means
>> problems:
>>
>> "MsiEvaluateCondition for VersionNT returned TRUE
>> End Function MyMsiEvaluateCondition
>> An error was encountered during connection to server: 1
>> Ending custom action UpgDetectBlankSaLogin().
>> Action ended 14:04:51:
>> UpgDetectBlankSaLogin.2D02443E_7002_4C0B_ABC9_EAB2C064397B. Return
>> value 3."
>
> you should provide the additional parameter
> SAPWD=the_password
> to your call to the MSDE boostrap installer..
> --
> Andrea Montanari (Microsoft MVP - SQL Server)
> http://www.asql.biz http://italy.mvps.org
> DbaMgr2k ver 0.21.1 - DbaMgr ver 0.65.1 and further SQL Tools
> --------- remove DMO to reply
> >> Stay informed about: UPGRADE FROM SP3a TO SP4 ERROR |
|
| Back to top |
|
 |  |
External

Since: Sep 13, 2003 Posts: 851
|
(Msg. 4) Posted: Wed Feb 13, 2008 5:29 pm
Post subject: Re: UPGRADE FROM SP3a TO SP4 ERROR [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
hi Carlos,
Carlos Pastor wrote:
> Hi Andrea,
>
> The instaler has deleted the user "sa" fro the table "model" and from
> my table.
this can not be true
probably your MSDE instance has not been set to allow standard SQL Server
authenticated connections, which requires "mixed mode", but trusted WinNT
authenticated connections only..
you can modify that via the SECURITYMODE=SQL parameter as you already did..
>
> The user "sa" has a password that I has put, but I can't connect with
> this MSDE SQL how sa from SQL administrator , I need to connect how
> Windows autentication. The sa user is broked. I have an aplication
> that can change the password of sa, and I do this cange and the
> result is correct, but I can't connect how sa.
>
> If I desinstall the MSDE and I install sp4 from cleaner is not
> problem, but I lose my table and my data.
>
> The sentence to upgrade this MSDE is this:
>
> setup /upgradesp sqlrun SECURITYMODE=SQL UPGRADEUSER=sa UPGRADEPWD=(MY
> PASSWORD) /L*v C:\MSDELog.log
>
try using
setup /upgradesp sqlrun SECURITYMODE=SQL SAPWD=some_password UPGRADEUSER=sa
UPGRADEPWD=(MYPASSWORD) /L*v C:\MSDELog.log
--
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz http://italy.mvps.org
DbaMgr2k ver 0.21.1 - DbaMgr ver 0.65.1 and further SQL Tools
--------- remove DMO to reply >> Stay informed about: UPGRADE FROM SP3a TO SP4 ERROR |
|
| Back to top |
|
 |  |
External

Since: Feb 12, 2008 Posts: 3
|
(Msg. 5) Posted: Thu Feb 14, 2008 8:31 am
Post subject: Re: UPGRADE FROM SP3a TO SP4 ERROR [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Hi Andrea,
Sorry, does not work, I'm desperate.
Not that most do.
Thank you for your help and for your time.
Regards,
Carlos Pastor
"Andrea Montanari" escribió en el mensaje
> hi Carlos,
> Carlos Pastor wrote:
>> Hi Andrea,
>>
>> The instaler has deleted the user "sa" fro the table "model" and from
>> my table.
>
> this can not be true
> probably your MSDE instance has not been set to allow standard SQL Server
> authenticated connections, which requires "mixed mode", but trusted WinNT
> authenticated connections only..
> you can modify that via the SECURITYMODE=SQL parameter as you already
> did..
>>
>> The user "sa" has a password that I has put, but I can't connect with
>> this MSDE SQL how sa from SQL administrator , I need to connect how
>> Windows autentication. The sa user is broked. I have an aplication
>> that can change the password of sa, and I do this cange and the
>> result is correct, but I can't connect how sa.
>>
>> If I desinstall the MSDE and I install sp4 from cleaner is not
>> problem, but I lose my table and my data.
>>
>> The sentence to upgrade this MSDE is this:
>>
>> setup /upgradesp sqlrun SECURITYMODE=SQL UPGRADEUSER=sa UPGRADEPWD=(MY
>> PASSWORD) /L*v C:\MSDELog.log
>>
>
> try using
> setup /upgradesp sqlrun SECURITYMODE=SQL SAPWD=some_password
> UPGRADEUSER=sa UPGRADEPWD=(MYPASSWORD) /L*v C:\MSDELog.log
>
> --
> Andrea Montanari (Microsoft MVP - SQL Server)
> http://www.asql.biz http://italy.mvps.org
> DbaMgr2k ver 0.21.1 - DbaMgr ver 0.65.1 and further SQL Tools
> --------- remove DMO to reply
>
> >> Stay informed about: UPGRADE FROM SP3a TO SP4 ERROR |
|
| Back to top |
|
 |  |
External

Since: Apr 03, 2008 Posts: 1
|
(Msg. 6) Posted: Mon Apr 14, 2008 4:00 pm
Post subject: Re: UPGRADE FROM SP3a TO SP4 ERROR [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
This worked for me:
setup /upgradesp sqlrun sapwd=mypassword securitymode=sql
From:
http://www.webapper.net/index.cfm/2006/10/19/Upgrading-MSDE-RTM-to-SP4
"Carlos Pastor" wrote in message
> Hi Andrea,
>
> Sorry, does not work, I'm desperate.
>
> Not that most do.
>
> Thank you for your help and for your time.
>
> Regards,
> Carlos Pastor
>
> "Andrea Montanari" escribió en el mensaje
>
>> hi Carlos,
>> Carlos Pastor wrote:
>>> Hi Andrea,
>>>
>>> The instaler has deleted the user "sa" fro the table "model" and from
>>> my table.
>>
>> this can not be true
>> probably your MSDE instance has not been set to allow standard SQL Server
>> authenticated connections, which requires "mixed mode", but trusted WinNT
>> authenticated connections only..
>> you can modify that via the SECURITYMODE=SQL parameter as you already
>> did..
>>>
>>> The user "sa" has a password that I has put, but I can't connect with
>>> this MSDE SQL how sa from SQL administrator , I need to connect how
>>> Windows autentication. The sa user is broked. I have an aplication
>>> that can change the password of sa, and I do this cange and the
>>> result is correct, but I can't connect how sa.
>>>
>>> If I desinstall the MSDE and I install sp4 from cleaner is not
>>> problem, but I lose my table and my data.
>>>
>>> The sentence to upgrade this MSDE is this:
>>>
>>> setup /upgradesp sqlrun SECURITYMODE=SQL UPGRADEUSER=sa UPGRADEPWD=(MY
>>> PASSWORD) /L*v C:\MSDELog.log
>>>
>>
>> try using
>> setup /upgradesp sqlrun SECURITYMODE=SQL SAPWD=some_password
>> UPGRADEUSER=sa UPGRADEPWD=(MYPASSWORD) /L*v C:\MSDELog.log
>>
>> --
>> Andrea Montanari (Microsoft MVP - SQL Server)
>> http://www.asql.biz http://italy.mvps.org
>> DbaMgr2k ver 0.21.1 - DbaMgr ver 0.65.1 and further SQL Tools
>> --------- remove DMO to reply
>>
>>
>
> >> Stay informed about: UPGRADE FROM SP3a TO SP4 ERROR |
|
| Back to top |
|
 |  |
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|