Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MS SQL Server


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Not Able To Download Sql Server 2005 Sp2 From The Microsoft Website


 

 

Dear members

 

I am using window vista and I am not able to download the SP2 for sql server 2005.

every time there is a message age can't be displayed.

 

from where I can download the sp2

 

thanks in advance




View Complete Forum Thread with Replies

Related Forum Messages:
How Can I Connect To Microsoft SQL Server 2005 CTP With Microsoft SQL Server 2005 Express Manager?
I installed Microsoft SQL Server 2005 Express Manager and connect to SQL 2000 normally

View Replies !
Problems Downloading From Microsoft Website
I can not download sql express 2005 from microsoft website. Everytime I click on the download button I get error saying "this page can not be displayed. Possible reason... internet connection" I know my internet connection is working because I am browsing through the microsoft website and other websites. I had .net 1.0 in my computer so I unintalled that to try to intall the latest 3.0 version but when I click to download that I get the same error. Seems I can not download anything from microsoft website. I uninstalled windows intaller and automatic update downloaded latest version of windows installer. When I tried to download windows installer from microsoft website I got the same error.
 
I am using Windows XP home edition version 5.1 sp2.
 
Please help!!
 
Thank you,
Jay

View Replies !
Microsoft.AnalysisServices.Viewers.DLL Microsoft SQL Server 2005 Datamining Viewer Controls
 

 

Hi

I am trying to use Association Viewer Control in

Microsoft.AnalysisServices.Viewers.DLL dll in VS 2005 but sometimes it gives an error.

"Code generatio for property 'ConnecitonManager'" failed. Error was:'Property accesor 'ConnectionManager' on object 'AssosiactionViewer1' threw the following exception:'Object referance not set to instance of an object"


Is there anyone here who use
"Microsoft SQL Server 2005 Datamining Viewer Controls" in SQLServer2005 FeaturePack ?
http://www.microsoft.com/downloads/details.aspx?FamilyID=50b97994-8453-4998-8226-fa42ec403d17&DisplayLang=en

i am using VS2005 Version 8.0.50727.762 (SP.050727-7600)
and SQL Server 2005 SP2

thanks from now.

Cem Ăśney

 

 

 

 

View Replies !
Microsoft No Longer Lets Us Download SqlExpress. Why?
Microsoft no longer lets us download SqlServer Express 2005.  Does anybody know why?  I thought it was free.

 

http://www.microsoft.com/downloads/details.aspx?FamilyID=220549b5-0b07-4448-8848-dcc397514b41&DisplayLang=en

 

In fact, none of the many options here work at all:

 

http://www.microsoft.com/downloads/browse.aspx?displaylang=en&productID=9F07F9CC-C308-4EBF-A4E9-2B8530AB1EA8

 

How come?  Is there someplace else I can get it?   I just don't understand why they do this stuff with no explanation.  I'm trying to learn C# and I need a database.

 

Any help would be appreciated.

 

Dave

Arlington, Virginia

View Replies !
Where Can I Download The OLE DB Provider For Microsoft Active Directory Service
Hi,

Where can I download the OLE DB Provider for Microsoft Active Directory Service.

I'm using sql server 2005, windows server 2003. not sure the version of AD. (all 32 bit).

Cheers
Chris

View Replies !
Where Can I Find The Infamous Microsoft.SQLServer.Broker Download?
I've been trying to find examples on how to work with the broker using ADO.Net and haven't found much. 

View Replies !
Difference Between Microsoft Sql Server 2008 And Microsoft Sql Server 2005
 

Pls tell me about the adjact difference between sql server 2005 and sql server 2008.
Why to upgrade for Sql Server 2008

View Replies !
SQL Server 2005 Express For A Website
Has anyone used SQL Server 2005 on a production website?  I know that it tops out at 1GB of ram, but it is free.  Any idea how much load it will take before you need to move up to the full version?

View Replies !
DOWNLOAD SQL SERVER 2005 SEPTEMBER CTP
The September CTP dwonload is now public so download test drive and happy coding. !!http://www.microsoft.com/sql/2005/productinfo/ctp.mspx

View Replies !
SQL 2005 Server Management Download
I've tried to download the SQL 2005 Server management but it always hang when it gets to 98% or 99%. has anybody experienced this and what solution is there for me. thanks

View Replies !
SQL Server 2005 Express - ISO Download ?
Morning

can anyone point me to an "offline" SQL Express 2005 ISO version ?

I have looked but can only find the Visual studio products that have an ISO - offline version

Thank you

Peter

View Replies !
Can I Use SQL Server 2005 Express In A Commercial Website?
Does anyone know if it is legal to use SQL Server 2005 Express in a commercial website?  There is no need for SQL Server 2005 so the Express would do the job great.Thx, Viktor 

View Replies !
SQL Server 2005 - Windows Application And Website
Hi there,
I have a question which I put the company that host my website but I didnt get a conclusive answer. Maybe someone here will be able to advise or help me with my situation.
I want to build a database that I will run on my local server and the front end of this will be run using a windows application. I have a website which I run the database on the remote server. What I would like to do is to be able to synchronize certain tables between the two databases (such as updating products table, or orders table). I am using sql server 2005 and I am using the sql server management studio to access my database on the remote server. I did notice there is a synchronzie button. I also came across some 3rd party tools. Not sure if that is the way to go.
If anyone as done this before or can give me any suggestions, I would be delighted.
Thanks
 Anthony

View Replies !
Website Navigation Hierarchy With SQL Server 2005
HiI'm trying to convert some verbose SQL Server 2000 T-SQL code that useslots temp tables and the like into a SQL Server 2005 only version,possibly using CTE.What I want to achieve is a menu like that onhttp://www.cancerline.com/cancerlin...9801_6_3_3.aspxNotice how you have the top level menu items, and then child nodesexpanded down to the low level page that link sends you to.Table sql:CREATE TABLE [dbo].[NavigationNode]([NodeId] [int] primary key nonclustered,[Text] [nvarchar](150) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,[AlternativeText] [nvarchar](250) COLLATE SQL_Latin1_General_CP1_CI_ASNULL,[Level] [int] NULL,[ParentNodeId] [int] constraint fk_parent_navnodeforeign key references [NavigationNode] ([NodeId]))Table data:1HomeNULL1NULL2SolutionsNULL113Solutions child1NULL224Solutions child2NULL225ContactNULL116solutions child1 child1NULL337solutions child1 child2NULL338solutions child1 child3NULL339solutions child1 child4NULL3310contact child1NULL25I have started to write some code with the common table expressionsyntax:declare @root int;set @root = 2;WITH Nav([NodeId],[ParentNodeId], [Text], [Level]) AS(SELECT [NodeId], [ParentNodeId], [Text], [Level]FROM [dbo].[NavigationNode]WHERE [ParentNodeId] = @rootUNION ALLSELECT n1.[NodeId], n1.[ParentNodeId], n1.[Text], n1.[Level]FROM [dbo].[NavigationNode] n1INNER JOIN Nav n2ON n1.[ParentNodeId] = n2.[NodeId])SELECT *FROM NavWhich returns:32Solutions child1242Solutions child2263solutions child1 child1373solutions child1 child2383solutions child1 child3393solutions child1 child43However I would prefer to the childnode, and then get parents of thatchild recursively. Doing that would leave me with a result set thatcould add the top level menu items to and have all the data required.Any help is greatly appreciated.-Brian

View Replies !
Is Sql Server 2005 Workgroup Good For My Website?
 

Hi!
I run a business website which is a kind of auction website running community forums.
There are about 300 visits daily and more than 100 items listed every day, and now 104,000 items listed.

The website is running under free-trial sql server 2005 standard and windows 2003 server, and asp.net with C#.
I am buying a retail edition of sql server.
I have compared each 2 editions, standard and workgroup.
Someone told me that I did not need standard edition if my website was not with pretty big data.
However, it was not clear to me and still confused.
Is it good enough for my website running under sql server 2005 workgroup not standard?

View Replies !
SQL Server 2005 June CTP Download Link
The first public beta  of SQL Server 2005 is available for download.  Try the link below and happy coding.http://www.microsoft.com/downloads/details.aspx?FamilyId=DC02CBB3-D688-4663-9103-37C83E044D59&displaylang=en

View Replies !
Can;t Download SQL Server 2005 Trial Edition
 

I want to download SQL Server 2005 Trial Edition, but i always meets problem in the last step. it displays:
 
<<We€™re sorry, but there is no Microsoft.com Web page that matches your entry. It is possible you typed the address incorrectly, or the page may no longer exist. You may wish to try another entry or choose from the links below, which we hope will help you find what you€™re looking for.>>
 
Who can tell me the way to download it? Thanks!

View Replies !
Can't Find SQL Server 2005 Evaluation Download
Hi,

I found the proper page for download of the SQL Server 2005 Evaluation and I went through the steps of registering, setting up an account, etc.  When I am redirected back to the page where I can theoretically now download the installation, there are two downloads available: ReadmeSQL2005.htm and RequirementsSQL2005.htm - But not the actuall installation file. Am I missing something, ot is something just missing?

Joe

 

View Replies !
How Do I Launch SQL Server 2005 Express After Download?
Looks like I sucessfully downloaded SQL Server Express Edition w/Advanced Services SP2 on my Vista-based notebook. Took care of the prerequisites from downloading with Vista. I see the Configuration Manager, and  Error and Usage Reporting. But......How do I launch SQL Server Express please?
Thank you!
Sandra Shokite

View Replies !
SQL Server 2005 Trial - Which File To Download?
Hi all,

I am extracting SQL server 2005 trial edition to my flash memory hard drive.

Hence suppose I should download one of the following three files:

"Self-extracting executables:

X86 Executable
X64 Executable
IA64 Executable "

But which one should I choose? based on what criteria ?

(This point seems clear to everyone but myself, even after I went through all the docs on the download site)

Thanks,

Jack (an absolute beginner)

View Replies !
Access SQL Server 2005 Database Using A Published Website
Hi all,
 I am stuck with a problem using ASP.Net website. I created a website which accesses a database table in SQL Server 2005. The default.aspx is a form which inserts/updates/deletes data from the database. After creating the website I published it to IIS (Inetpub -> wwwroot). When I use Visual Studio 2005 and build the website and start with debugging. the form comes up and i can insert/update or delete the data from the table as I want. Now, as I have the website published I can access the form from another sharepoint website using the url as
/Employee_Data/Default.aspx">http://<mydesktop>/Employee_Data/Default.aspx
the form shows up but I am not able to access any of the database. I do not see any errors either. Once I click on the button the page just refreshes but nothing else happens. I have my web.config as :-
<?xml version="1.0"?>
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<compilation debug="true"/>
<authentication mode="Windows"/>
</system.web>
</configuration>
 
Am I missing something? I even have Anonymous access in the IIS inetpub properties. I can even the database as I am the administrator..... I appreciate your suggestions.
 
Thanks,
Kavya

View Replies !
Can Data Analysis Done Using SQL Server 2005 Be Used In A Consumer Website?
I just have a simple question that can hopefully answer whether I should dive too deeply into Reporting/Analysis Services. I'm looking to run some clustering algorithms on user-inputted keywords on objects within my database (please see http://flickr.com/photos/tags/friends/clusters/ for an example of what I'm talking about). It seems to me that the various reporting methods that SQL Server provides would be an ideal, quick and easy way of providing this for my SQL Server 2005 database.

Can the reporting services provide this type of functionality? And if so, would this be scalable? I would want to be able to access this clustered data in much the same way I do queries across my database and would want them to be done quickly and efficiently.

Thank you for your help.

View Replies !
SQL Server Express 2005 Will Not Install Direct From The Website
SQL Server Express 2005 will not install. I download the necessary package direct from the asp.net website and towards the end of the installation the following error occurs:
 
"An installation package for the product Microsoft SQL Server Native Client cannot be found. Try the installation again using a valid copy of the installation package 'sqlncli.msi'."
 
I get the exact same message for the following:
 
Microsoft SQL Server VSS Writer - same message as above only requesting a valid copy of 'SqlWriter.msi'
MSXML6.0 Parser - same message as above only requesting a valid copy of 'msxml6.msi'
 
Can anyone help? I am desperate to use SQL with Visual Web Developer 2005 and 2008, but I am unable to do so. Please help if you can.
 
Steve
 

View Replies !
Can I Use SQL Server 2005 Standard To Create And Host Db For Website?
Hi guys,

   I am just wondering what's the difference of sql server 2005 standard and enterprise editions. can I use SQL server 2005 to host a database for a website?

 

  Thanks!

  Daren

 

View Replies !
Secruity Question, Putting SQL Server 2000 Or 2005 On Windows Server 2003 Running A Website
Where can I further educate myself on this subject?

Right off from the start I would assume that installing SQL Server 2000 or 2005 on Windows Server 2003 that is set up as a web server hosting a website would be against "best practices."  Is my assumption right?

Common sense tells me to not to host a website on a pc that is also hosting my database.

View Replies !
How Do I Upload To And Download From A Shared SQL Server 2005 Database?
My hosting gives me ASP.NET 2.0 and a shared SQL Server 2005 package.
I have Visual Studio 2005 on my machine - which installs SQL Server 2005 Express. I have also installed SQL Server 2005 Management Studio Express.
I wish to develop my database locally (mdf file) as I won't always have internet access (and therefore can't always work directly with the remote shared database).
My question is, how do I upload my database info from my local machine to my remote shared database?
Also I shall wish to download my remote database to my local machine in order to work on the database (and then be able to re-upload it) sometimes.
Please can somebody tell me how I can do this?
Will SQL Server 2005 Management Studio Express permit me to do this and if so how?
If I need the full version of SQL Server 2005 Management Studio then I do have SQL Server 2005 and this install with it (but it all looks a bit complicated to install for me).
Many thanks for all help given,
Graham
 

View Replies !
Where To Download SQL Server 2005 Metadata Samples Toolkit?
Hi,
Can someone tell me where I can download the "SQL Server 2005 BI Metadata Samples toolkit"? Seems the old ulr doesn't work right now.
 
Thanks in advance.
 
Mike

View Replies !
Is The SQL Server 2005 Express Toolkit Download Corrupt?
I have now tried to download this several times and each time I get a "Extraction failed | File is corrupt" dialog midway through the extraction.  Each time it is corrupt in the same place, UNTIL I re-download it, when it is corrupt in a different place!

I've tried using the -x switch to extract to different disks.  No difference there - so not a disk error.

I could download and extract "SQLEXPR_ADV.EXE" fine.

The forums seem to offer no hope here either.

View Replies !
Need MSSQL Server 2005 Enterprise Edition Download
Hi Dudes,

I need a clean link for MSSQL Server 2005 Enterprise Edition download except Microsoft site. I already downloaded from it, burned the downloaded image, but the problem is that sql.cab and some other cab files got corrupted and some components became unable to install. I tried and installed it without some components. So anybody can help me in getting a proper link.

And one more thing, i downloaded from the microsoft site itself with file size around 890MB. So give me link which works 100% or those who have tried and got 100% result.

Thanx,
BP.

View Replies !
SQL Server 2005 Standard Edition And Website Starter Kits
Hi, everyone!

I'm trying to practice with the website starter kits using Visual Studio
2005. But so far, I haven't been able to run the mentioned websites because
the connection they use is against SQL Server Express...

I don't have SQL Server Express. Instead, what I have installed is SQL
Server 2005 Standard Edition.

I'm not even able to use the new APS.NET WeSAT application to administer the sites because allway get the "Time out" error.

Do any of you know how to resolve this whole situation?

Thanks very much in advance for your help.
Ralph.

View Replies !
SQL Server 2005 Reporting Services Error, Hotfix Download?
 
Hello I am attempting install CRM Server 3.0 R2 using SQL Server 2005 SP2.
On install of CRM Server 3.0 R2 I receive a SQL Server reporting services error:

Setup failed to validate specified Reporting Services Report Server http://jupiter/reportserver. Error: The feature: "Customizing security roles" is not supported in this edition of Reporting Services.
 
There is a hotfix available here: 935922
But how can I get the hotfix and why is this hotfix not simply available for download as per other bug fixes?
 
Now stcuk with no way to move forward.
 
BTW anyone who has SBS2003 R2 and wants to get CRM server/client setup to work with Outlook 2003 and Vista read here 935922
But how can I get the hotfix and why is this hotfix not simply available for download as per other bug fixes?
 
Now stcuk with no way to move forward.
 
BTW anyone who has SBS2003 R2 and wants to get CRM server/client setup to work with Outlook 2003 and Vista read here http://www.teknobot.co.uk/archives/category/tech. Its better than any other MS article Ive found so far. Why MS realease action pack software that simply do not work with each other is beyond me, SBS always gets the dirty end of the stick.
 
Any help would be greatly appreciated.

View Replies !
Can't Open SQL Server Management Studio After SQL 2005 Trial Download
I installed "successfully" the SQL 2005 Trial download but I can't find an executable to launch the Business Intelligence and SQL Server Management Studio  programs.  They don't appear on the start up menu and I can't find them in the programs folder.

View Replies !
Working In VB.Net 2005 Inserting NULL Into A Field In Microsoft SQL Server 2005
I am update/inserting records threw a web form in vb.net. I need to insert 'NULL'  into my microsoft sql server database.  I am not talking about the below line of code where website is the name of my paramater.  If i do that it will just place a blank into that field in the database.  If i dont enter anything into that textbox I want it to to say NULL in that field. So if I go into the actual table in the SQL Server Management Studio and look at the website field of the recored I just added or updated and did not type anything into the web site textbox it needs to say NULL.  I also tried the second line of code but that places a single quote in front and behind NULL. So the field will have the value 'NULL'.
website.value = txtwebsite.text.tostirng
 if txtwebsite.text ="" then
   website.value ="NULL"
end if
The reason why I need the NULL there is because I bind the website filed to a hyperlink template in a gridview.  The actual text of the hyperlink is bound to PAYER which is a name of a insurance payer but the navigateto is bound to the website field.  If i do not enter any data into the website field and it stays as NULL, then when my gridview is loaded, payers that dont have a website will not be underlined and user wont have the option to click on them since there is no value for the navigateto.  But if i use my form to update/add a payer and leave the website textbox blank in puts a blank into that field in my database and when it loads that new row into the gridview the PAYER is underlined and u can click on it but it will just take u to the web site is unavailable page.  So is there anyway to actaull have NULL placed into a filed and not just blank space

View Replies !
Sql 2005 Sp2 Install Error Microsoft SQL Server 2005 -- Errore 29506
Sp2 cannot be install

can someone help me

 

this is hotfix log

 

05/16/2007 13:05:30.583 ================================================================================
05/16/2007 13:05:30.599 Hotfix package launched
05/16/2007 13:05:30.630 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:30.646 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:30.662 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:30.677 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:30.693 Local Computer:
05/16/2007 13:05:30.708 Target Details: DC-01
05/16/2007 13:05:30.724   commonfilesdir = C:ProgrammiFile comuni
05/16/2007 13:05:30.740   lcidsupportdir = e:3f798aa49a0102c6d1f049aa36bd359d1040
05/16/2007 13:05:30.755   programfilesdir = C:Programmi
05/16/2007 13:05:30.771   programfilesdir_wow = C:Programmi
05/16/2007 13:05:30.771   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:30.802   supportdirlocal = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:30.818   windir = C:WINDOWS
05/16/2007 13:05:30.833   winsysdir = C:WINDOWSsystem32
05/16/2007 13:05:30.849   winsysdir_wow = C:WINDOWSSysWOW64
05/16/2007 13:05:30.865
05/16/2007 13:05:30.958 Enumerating applicable products for this patch
05/16/2007 13:05:31.005 Found Redist 2005 product definition
05/16/2007 13:05:31.021 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:31.036 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:31.052 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:31.068 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:31.442 Found Redist 2005 product definition
05/16/2007 13:05:31.458 Found Redist 2005 product definition
05/16/2007 13:05:31.474 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:31.489 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:31.505 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:31.521 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:31.677 Found SQL 2005 product definition
05/16/2007 13:05:32.270 Enumeration: Determining QFE level for product instance MSSQLSERVER
05/16/2007 13:05:32.286 Enumeration: Associated hotfix build information not found for the following file: C:ProgrammiMicrosoft SQL ServerMSSQL.1MSSQLBinnSQLServr.exe
05/16/2007 13:05:32.286 Enumeration: Found following QFE level for product instance MSSQLSERVER: 1399
05/16/2007 13:05:32.302 Enumeration: Determining GDR branching Hotfix for product instance MSSQLSERVER
05/16/2007 13:05:32.317 Enumeration: Associated hotfix build information not found for the following file: C:ProgrammiMicrosoft SQL ServerMSSQL.1MSSQLBinnSQLServr.exe
05/16/2007 13:05:32.333 Enumeration: No GDR branch Hotfix found for product instance MSSQLSERVER
05/16/2007 13:05:32.348 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:32.348 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:32.364 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:32.380 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:32.395 Product discovery completed during the install process for MSSQLSERVER
05/16/2007 13:05:32.411 SP Level check completed during the install process for MSSQLSERVER
05/16/2007 13:05:32.411 Product language check completed during the install process for MSSQLSERVER
05/16/2007 13:05:32.426 Product version check completed during the install process for MSSQLSERVER
05/16/2007 13:05:32.442 Command-line instance name check completed during the install process
05/16/2007 13:05:32.458 SKU check completed during the install process for MSSQLSERVER
05/16/2007 13:05:32.473 Baseline build check completed during the installation process for MSSQLSERVER
05/16/2007 13:05:32.489 Baseline build check completed during the install process
05/16/2007 13:05:32.505 Found OLAP Server 2005 product definition
05/16/2007 13:05:33.004 Command-line instance name check completed during the install process
05/16/2007 13:05:33.004 Baseline build check completed during the install process
05/16/2007 13:05:33.036 Found Notification Services 2005 product definition
05/16/2007 13:05:33.520 Baseline build check completed during the install process
05/16/2007 13:05:33.551 Found Report Server 2005 product definition
05/16/2007 13:05:34.051 Command-line instance name check completed during the install process
05/16/2007 13:05:34.066 Baseline build check completed during the install process
05/16/2007 13:05:34.082 Found DTS 2005 product definition
05/16/2007 13:05:34.582 Baseline build check completed during the install process
05/16/2007 13:05:34.613 Found SQL 2005 Tools product definition
05/16/2007 13:05:35.113 Enumeration: Determining GDR branching Hotfix for product instance
05/16/2007 13:05:35.144 Enumeration: Associated hotfix build information not found for the following file: C:ProgrammiMicrosoft SQL Server90Tools\BinnVSShellCommon7IDESQLWB.EXE
05/16/2007 13:05:35.160 Enumeration: No GDR branch Hotfix found for product instance
05/16/2007 13:05:35.175 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.191 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:35.207 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.207 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:35.222 Product discovery completed during the install process for SQL Tools
05/16/2007 13:05:35.238 SP Level check completed during the install process for SQL Tools
05/16/2007 13:05:35.253 Product language check completed during the install process for SQL Tools
05/16/2007 13:05:35.253 Product version check completed during the install process for SQL Tools
05/16/2007 13:05:35.269 SKU check completed during the install process for SQL Tools
05/16/2007 13:05:35.285 Baseline build check completed during the install process
05/16/2007 13:05:35.300 Found Redist 2005 product definition
05/16/2007 13:05:35.316 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.332 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:35.347 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.363 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:35.597 Found Redist 2005 product definition
05/16/2007 13:05:35.613 Found Redist 2005 product definition
05/16/2007 13:05:35.628 Found Redist 2005 product definition
05/16/2007 13:05:35.644 Found Redist 2005 product definition
05/16/2007 13:05:35.660 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.675 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:35.675 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.691 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:35.909 Found Redist 2005 product definition
05/16/2007 13:05:35.925 Found Redist 2005 product definition
05/16/2007 13:05:35.941 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.941 Registry: Read registry key value "CommonFilesDir", string value = C:ProgrammiFile comuni
05/16/2007 13:05:35.956 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
05/16/2007 13:05:35.972 Registry: Read registry key value "ProgramFilesDir", string value = C:Programmi
05/16/2007 13:05:36.128 Found Redist 2005 product definition
05/16/2007 13:05:36.191 Product Enumeration Results:
05/16/2007 13:05:36.206   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSqlncli.inf
05/16/2007 13:05:36.222   baselinebuild = 1399
05/16/2007 13:05:36.237   build = 3042
05/16/2007 13:05:36.253   description = SQL Server Native Client
05/16/2007 13:05:36.269   details = Service Pack per Microsoft SQL Server Native Client.
05/16/2007 13:05:36.284   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:36.300   kbarticle = KB921896
05/16/2007 13:05:36.316   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:36.331   lcid = 1040
05/16/2007 13:05:36.347   legalproductname = Microsoft SQL Native Client
05/16/2007 13:05:36.362   machinetype = x86
05/16/2007 13:05:36.362   package = HotFixSqlncli
05/16/2007 13:05:36.378   packagetype = Hotfix
05/16/2007 13:05:36.394   productcode = {BA06B694-0CFE-4A3E-81A7-9CED25B74E2B}
05/16/2007 13:05:36.409   productname = Redist9
05/16/2007 13:05:36.425   recommendinstall = 1
05/16/2007 13:05:36.441   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:36.456   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:36.472   splevel = 2
05/16/2007 13:05:36.487   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:36.519   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:36.519   upgradecode = {A6B19337-7392-4765-8675-5C25B758BA37}
05/16/2007 13:05:36.534   version = 9
05/16/2007 13:05:36.550
05/16/2007 13:05:36.581   File Group Details: MSI
05/16/2007 13:05:36.597     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:36.612     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:36.628     File Details: sqlncli.msi
05/16/2007 13:05:36.644
05/16/2007 13:05:36.659   Instance Details: SQL Server Native Client
05/16/2007 13:05:36.690     fullversion = 9.00.3042.00
05/16/2007 13:05:36.706     lcid = 1040
05/16/2007 13:05:36.722     productcode = {BA06B694-0CFE-4A3E-81A7-9CED25B74E2B}
05/16/2007 13:05:36.753     qfelevel = 3042
05/16/2007 13:05:36.769     sp = -1
05/16/2007 13:05:36.784
05/16/2007 13:05:36.800 Product Enumeration Results:
05/16/2007 13:05:36.831   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSqlncli_x64.inf
05/16/2007 13:05:36.847   baselinebuild = 1399
05/16/2007 13:05:36.862   build = 3042
05/16/2007 13:05:36.878   description = SQL Server Native Client
05/16/2007 13:05:36.893   details = Service Pack per Microsoft SQL Server Native Client.
05/16/2007 13:05:36.909   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:36.940   kbarticle = KB921896
05/16/2007 13:05:36.956   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:36.972   lcid = 1040
05/16/2007 13:05:36.987   legalproductname = Microsoft SQL Native Client (64 bit)
05/16/2007 13:05:37.018   machinetype = x64
05/16/2007 13:05:37.034   package = HotFixSqlncli_x64
05/16/2007 13:05:37.050   packagetype = Hotfix
05/16/2007 13:05:37.081   productname = Redist9
05/16/2007 13:05:37.097   recommendinstall = 1
05/16/2007 13:05:37.112   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:37.128   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:37.159   splevel = 2
05/16/2007 13:05:37.175   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:37.190   upgradecode = {6EC3319D-84BE-4C32-AA91-7D6057CF05A5}
05/16/2007 13:05:37.206   version = 9
05/16/2007 13:05:37.237
05/16/2007 13:05:37.253   File Group Details: MSI
05/16/2007 13:05:37.268     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:37.284     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:37.315     File Details: sqlncli_x64.msi
05/16/2007 13:05:37.331
05/16/2007 13:05:37.346 Product Enumeration Results:
05/16/2007 13:05:37.362   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSqlSupport.inf
05/16/2007 13:05:37.393   alwaysinstall = 1
05/16/2007 13:05:37.409   baselinebuild = 1399
05/16/2007 13:05:37.425   build = 3042
05/16/2007 13:05:37.456   description = File di supporto dell'installazione
05/16/2007 13:05:37.534   details = Service Pack per i file di supporto dell'installazione di SQL Server.
05/16/2007 13:05:37.565   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:37.581   kbarticle = KB921896
05/16/2007 13:05:37.596   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:37.612   keyqualifier = 1
05/16/2007 13:05:37.643   lcid = 1040
05/16/2007 13:05:37.659   legalproductname = File di supporto dell'installazione di SQL Server 2005
05/16/2007 13:05:37.674   machinetype = x86
05/16/2007 13:05:37.690   package = HotFixSqlSupport
05/16/2007 13:05:37.690   packagetype = Hotfix
05/16/2007 13:05:37.706   productcode = {6379FD0A-8964-4A50-80A6-B20B65117905}
05/16/2007 13:05:37.737   productname = Redist9
05/16/2007 13:05:37.753   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:37.768   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:37.784   splevel = 2
05/16/2007 13:05:37.815   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:37.831   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:37.846   upgradecode = {3A91FA19-A197-467C-850F-0AFE90899371}
05/16/2007 13:05:37.862   version = 9
05/16/2007 13:05:37.877
05/16/2007 13:05:37.893   File Group Details: MSI
05/16/2007 13:05:37.909     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCacheSQLSupport<MachineType><LCID>
05/16/2007 13:05:37.940     parameters = REINSTALL=ALL
05/16/2007 13:05:37.956     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:37.971     File Details: SqlSupport.msi
05/16/2007 13:05:37.987
05/16/2007 13:05:38.002   Instance Details: File di supporto dell'installazione
05/16/2007 13:05:38.018     fullversion = 9.2.3042
05/16/2007 13:05:38.049     lcid = 1040
05/16/2007 13:05:38.065     productcode = {6379FD0A-8964-4A50-80A6-B20B65117905}
05/16/2007 13:05:38.081     qfelevel = 3042
05/16/2007 13:05:38.096     sp = -1
05/16/2007 13:05:38.112
05/16/2007 13:05:38.143 Product Enumeration Results:
05/16/2007 13:05:38.159   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSQL.inf
05/16/2007 13:05:38.174   baselinebuild = 1399
05/16/2007 13:05:38.190   baselinebuildmax = 3042
05/16/2007 13:05:38.205   build = 3042
05/16/2007 13:05:38.221   description = Servizi di database
05/16/2007 13:05:38.237   details = Service Pack per il Motore di database e gli strumenti di SQL Server per la gestione di dati relazionali e XML, per la replica e per la ricerca full-text.
05/16/2007 13:05:38.252   installer = Hotfix
05/16/2007 13:05:38.268   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:38.284   kbarticle = KB921896
05/16/2007 13:05:38.299   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:38.330   lcid = 1040
05/16/2007 13:05:38.346   legalproductname = Servizi di database SQL Server 2005
05/16/2007 13:05:38.362   machinetype = x86
05/16/2007 13:05:38.393   package = HotFixSQL
05/16/2007 13:05:38.409   packagetype = Hotfix
05/16/2007 13:05:38.424   productname = SQL9
05/16/2007 13:05:38.440   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:38.471   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:38.487   sku = DESKTOP,STANDARD,WORKGROUP,ENTERPRISE,SBS,OFFICE,MSDE,DEVELOPERDESKTOP,DEVELOPERSTANDARD,PERSONAL,DEVELOPER,EVAL
05/16/2007 13:05:38.502   splevel = 2
05/16/2007 13:05:38.518   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:38.549   sqlutility = sqlcmd.exe
05/16/2007 13:05:38.565   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:38.580   validateauthentication = true
05/16/2007 13:05:38.596   version = 9
05/16/2007 13:05:38.612
05/16/2007 13:05:38.627   File Group Details: MSP
05/16/2007 13:05:38.658     parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
05/16/2007 13:05:38.674     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:38.690     File Details: sqlrun_sql.msp
05/16/2007 13:05:38.705
05/16/2007 13:05:38.721   Instance Details: MSSQLSERVER
05/16/2007 13:05:38.752     agentservicename = SQLSERVERAGENT
05/16/2007 13:05:38.768     clustername =
05/16/2007 13:05:38.783     default = TRUE
05/16/2007 13:05:38.815     ftsservicename = MSFTESQL
05/16/2007 13:05:38.830     fullversion = 2005.090.1399.00
05/16/2007 13:05:38.846     hiveregpath = SoftwareMicrosoftMicrosoft SQL ServerMSSQL.1
05/16/2007 13:05:38.877     id = MSSQL.1
05/16/2007 13:05:38.893     installsqldatadir = C:ProgrammiMicrosoft SQL ServerMSSQL.1MSSQL
05/16/2007 13:05:38.908     installsqldir = C:ProgrammiMicrosoft SQL ServerMSSQL.1MSSQL
05/16/2007 13:05:38.924     lcid = 1040
05/16/2007 13:05:38.940     name = MSSQLSERVER
05/16/2007 13:05:38.971     productcode = {E0BB3923-308B-4BE9-B3A3-FD5517481E48}
05/16/2007 13:05:39.002     qfelevel = 1399
05/16/2007 13:05:39.018     servicename = MSSQLServer
05/16/2007 13:05:39.033     sku = STANDARD
05/16/2007 13:05:39.049     sp = 0
05/16/2007 13:05:39.065     type = SQL Server Standalone Product
05/16/2007 13:05:39.096     vermajbld = 1399
05/16/2007 13:05:39.111     version = 9
05/16/2007 13:05:39.127
05/16/2007 13:05:39.143 Product Enumeration Results:
05/16/2007 13:05:39.174   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixAS.inf
05/16/2007 13:05:39.189   baselinebuild = 1399
05/16/2007 13:05:39.205   baselinebuildmax = 3042
05/16/2007 13:05:39.236   build = 3042
05/16/2007 13:05:39.252   description = Analysis Services
05/16/2007 13:05:39.268   details = Service Pack per Analysis Services e per gli strumenti per il supporto dell'elaborazione analitica in linea (OLAP) e del data mining.
05/16/2007 13:05:39.283   installer = Hotfix
05/16/2007 13:05:39.299   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:39.330   kbarticle = KB921896
05/16/2007 13:05:39.346   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:39.361   lcid = 1040
05/16/2007 13:05:39.377   legalproductname = SQL Server Analysis Services 2005
05/16/2007 13:05:39.408   machinetype = x86
05/16/2007 13:05:39.424   package = HotFixAS
05/16/2007 13:05:39.455   packagetype = Hotfix
05/16/2007 13:05:39.471   productname = OLAP9
05/16/2007 13:05:39.486   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:39.502   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:39.533   splevel = 2
05/16/2007 13:05:39.549   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:39.564   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:39.580   version = 9
05/16/2007 13:05:39.611
05/16/2007 13:05:39.627   File Group Details: MSP
05/16/2007 13:05:39.642     parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
05/16/2007 13:05:39.674     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:39.689     File Details: sqlrun_as.msp
05/16/2007 13:05:39.705
05/16/2007 13:05:39.736 Product Enumeration Results:
05/16/2007 13:05:39.752   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixNS.inf
05/16/2007 13:05:39.767   baselinebuild = 1399
05/16/2007 13:05:39.799   baselinebuildmax = 3042
05/16/2007 13:05:39.814   build = 3042
05/16/2007 13:05:39.830   description = Notification Services
05/16/2007 13:05:39.861   details = Service Pack per Notification Services, una piattaforma per lo sviluppo e la distribuzione di applicazioni per l'invio di notifiche personalizzate e tempestive a un'ampia gamma di dispositivi o applicazioni.
05/16/2007 13:05:39.877   installer = Hotfix
05/16/2007 13:05:39.892   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:39.908   kbarticle = KB921896
05/16/2007 13:05:39.924   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:39.939   lcid = 1040
05/16/2007 13:05:39.970   legalproductname = Istanze di SQL Server Notification Services 2005
05/16/2007 13:05:39.986   machinetype = x86
05/16/2007 13:05:40.002   package = HotFixNS
05/16/2007 13:05:40.017   packagetype = Hotfix
05/16/2007 13:05:40.033   productname = NS9
05/16/2007 13:05:40.064   recommendinstall = 1
05/16/2007 13:05:40.080   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:40.095   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:40.111   splevel = 2
05/16/2007 13:05:40.142   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:40.158   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:40.189   version = 9
05/16/2007 13:05:40.205
05/16/2007 13:05:40.220   File Group Details: MSP
05/16/2007 13:05:40.236     parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
05/16/2007 13:05:40.267     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:40.283     File Details: sqlrun_ns.msp
05/16/2007 13:05:40.298
05/16/2007 13:05:40.330 Product Enumeration Results:
05/16/2007 13:05:40.345   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixRS.inf
05/16/2007 13:05:40.361   baselinebuild = 1399
05/16/2007 13:05:40.376   baselinebuildmax = 3042
05/16/2007 13:05:40.408   build = 3042
05/16/2007 13:05:40.423   description = Reporting Services
05/16/2007 13:05:40.439   details = Service Pack per Server report e Generatore report, utilizzati per la gestione, l'esecuzione, il rendering e la distribuzione dei report.
05/16/2007 13:05:40.455   installer = Hotfix
05/16/2007 13:05:40.486   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:40.501   kbarticle = KB921896
05/16/2007 13:05:40.517   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:40.548   lcid = 1040
05/16/2007 13:05:40.564   legalproductname = SQL Server Reporting Services 2005
05/16/2007 13:05:40.580   machinetype = x86
05/16/2007 13:05:40.611   package = HotFixRS
05/16/2007 13:05:40.626   packagetype = Hotfix
05/16/2007 13:05:40.642   productname = RS9
05/16/2007 13:05:40.658   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:40.673   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:40.689   sku = DESKTOP,STANDARD,WORKGROUP,ENTERPRISE,SBS,OFFICE,MSDE,DEVELOPERDESKTOP,DEVELOPERSTANDARD,PERSONAL,DEVELOPER,EVAL
05/16/2007 13:05:40.720   splevel = 2
05/16/2007 13:05:40.736   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:40.751   sqlutility = sqlcmd.exe
05/16/2007 13:05:40.767   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:40.798   validateauthentication = 1
05/16/2007 13:05:40.814   version = 9
05/16/2007 13:05:40.829
05/16/2007 13:05:40.861   File Group Details: MSP
05/16/2007 13:05:40.876     parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
05/16/2007 13:05:40.892     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:40.908     File Details: sqlrun_rs.msp
05/16/2007 13:05:40.939
05/16/2007 13:05:40.954 Product Enumeration Results:
05/16/2007 13:05:40.970   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixDTS.inf
05/16/2007 13:05:41.001   baselinebuild = 1399
05/16/2007 13:05:41.017   baselinebuildmax = 3042
05/16/2007 13:05:41.032   build = 3042
05/16/2007 13:05:41.064   description = Integration Services
05/16/2007 13:05:41.079   details = Service Pack per Integration Services, una serie di strumenti e oggetti programmabili per la creazione e la gestione di pacchetti per l'estrazione, la trasformazione e il caricamento dei dati, nonchĂ© per l'esecuzione di attivitĂ .
05/16/2007 13:05:41.095   installer = Hotfix
05/16/2007 13:05:41.126   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:41.142   kbarticle = KB921896
05/16/2007 13:05:41.157   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:41.173   lcid = 1040
05/16/2007 13:05:41.189   legalproductname = SQL Server Integration Services 2005
05/16/2007 13:05:41.220   machinetype = x86
05/16/2007 13:05:41.236   package = HotFixDTS
05/16/2007 13:05:41.251   packagetype = Hotfix
05/16/2007 13:05:41.282   productname = DTS9
05/16/2007 13:05:41.298   recommendinstall = 1
05/16/2007 13:05:41.314   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:41.329   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:41.360   splevel = 2
05/16/2007 13:05:41.376   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:41.392   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:41.423   version = 9
05/16/2007 13:05:41.439
05/16/2007 13:05:41.454   File Group Details: MSP
05/16/2007 13:05:41.485     parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
05/16/2007 13:05:41.501     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:41.517     File Details: sqlrun_dts.msp
05/16/2007 13:05:41.548
05/16/2007 13:05:41.564 Product Enumeration Results:
05/16/2007 13:05:41.579   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixTools.inf
05/16/2007 13:05:41.610   baselinebuild = 1399
05/16/2007 13:05:41.626   baselinebuildmax = 3042
05/16/2007 13:05:41.642   build = 3042
05/16/2007 13:05:41.657   description = Componenti client
05/16/2007 13:05:41.688   details = Service Pack per gli strumenti interattivi di gestione per l'esecuzione di SQL Server, tra cui Gestione configurazione SQL Server, SQL Server Management Studio, SQL Profiler e Monitoraggio replica.
05/16/2007 13:05:41.704   installer = Hotfix
05/16/2007 13:05:41.720   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:41.751   kbarticle = KB921896
05/16/2007 13:05:41.767   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:41.782   lcid = 1040
05/16/2007 13:05:41.798   legalproductname = Componenti workstation e strumenti di SQL Server 2005
05/16/2007 13:05:41.829   machinetype = x86
05/16/2007 13:05:41.845   package = HotFixTools
05/16/2007 13:05:41.860   packagetype = Hotfix
05/16/2007 13:05:41.876   productname = SQLTools9
05/16/2007 13:05:41.892   recommendinstall = 1
05/16/2007 13:05:41.923   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:41.938   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:41.954   sku = DESKTOP,STANDARD,WORKGROUP,ENTERPRISE,SBS,OFFICE,MSDE,DEVELOPERDESKTOP,DEVELOPERSTANDARD,PERSONAL,DEVELOPER,EVAL
05/16/2007 13:05:41.985   splevel = 2
05/16/2007 13:05:42.001   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:42.016   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:42.032   version = 9
05/16/2007 13:05:42.063
05/16/2007 13:05:42.079   File Group Details: MSP
05/16/2007 13:05:42.095     parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
05/16/2007 13:05:42.110     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:42.141     File Details: sqlrun_tools.msp
05/16/2007 13:05:42.157
05/16/2007 13:05:42.188   Instance Details: SQL Tools
05/16/2007 13:05:42.204     associatedhotfixbuild = 1520
05/16/2007 13:05:42.220     clustername =
05/16/2007 13:05:42.235     fullversion = 9.2.3042
05/16/2007 13:05:42.266     hiveregpath = SoftwareMicrosoftMicrosoft SQL Server90Tools
05/16/2007 13:05:42.282     id =
05/16/2007 13:05:42.298     installsqldatadir =
05/16/2007 13:05:42.313     installsqldir = C:ProgrammiMicrosoft SQL Server90Tools
05/16/2007 13:05:42.329     lcid = 1040
05/16/2007 13:05:42.360     name =
05/16/2007 13:05:42.376     productcode = {B03FBBA3-CCE4-40CC-A0F1-01F952E7EB3E}
05/16/2007 13:05:42.391     qfelevel = 3042
05/16/2007 13:05:42.407     sku = STANDARD
05/16/2007 13:05:42.438     sp = 2
05/16/2007 13:05:42.454     type = Tools Only
05/16/2007 13:05:42.469     vermajbld = 3042
05/16/2007 13:05:42.501     version = 9
05/16/2007 13:05:42.516
05/16/2007 13:05:42.532 Product Enumeration Results:
05/16/2007 13:05:42.563   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixMsxml6.inf
05/16/2007 13:05:42.579   baselinebuild = 1399
05/16/2007 13:05:42.594   build = 6.10.1129.0
05/16/2007 13:05:42.626   description = Parser MSXML 6.0
05/16/2007 13:05:42.641   details = Service Pack per il parser Microsoft XML 6.0.
05/16/2007 13:05:42.657   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:42.688   kbarticle = KB921896
05/16/2007 13:05:42.704   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:42.719   lcid = 1040
05/16/2007 13:05:42.751   legalproductname = Parser MSXML 6.0
05/16/2007 13:05:42.766   machinetype = x86
05/16/2007 13:05:42.782   package = HotFixMsxml6
05/16/2007 13:05:42.797   packagetype = Hotfix
05/16/2007 13:05:42.813   productcode = {8919A89C-D378-4899-BE19-12893E4DCCEE}
05/16/2007 13:05:42.844   productname = Redist9
05/16/2007 13:05:42.860   recommendinstall = 1
05/16/2007 13:05:42.876   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:42.891   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:42.922   splevel = 2
05/16/2007 13:05:42.938   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:42.969   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:42.985   upgradecode = {1B117BA7-5BC1-419E-820E-7D4F3F412C7B}
05/16/2007 13:05:43.000   version = 9
05/16/2007 13:05:43.016
05/16/2007 13:05:43.032   File Group Details: MSI
05/16/2007 13:05:43.063     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:43.079     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:43.094     File Details: msxml6.msi
05/16/2007 13:05:43.110
05/16/2007 13:05:43.141   Instance Details: Parser MSXML 6.0
05/16/2007 13:05:43.157     fullversion = 6.10.1129.0
05/16/2007 13:05:43.172     lcid = 1040
05/16/2007 13:05:43.188     productcode = {8919A89C-D378-4899-BE19-12893E4DCCEE}
05/16/2007 13:05:43.219     qfelevel = 1129
05/16/2007 13:05:43.235     sp = -1
05/16/2007 13:05:43.250
05/16/2007 13:05:43.266 Product Enumeration Results:
05/16/2007 13:05:43.297   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixMsxml6_x64.inf
05/16/2007 13:05:43.313   baselinebuild = 1399
05/16/2007 13:05:43.328   build = 6.10.1129.0
05/16/2007 13:05:43.360   description = Parser MSXML 6.0
05/16/2007 13:05:43.375   details = Service Pack per il parser Microsoft XML 6.0.
05/16/2007 13:05:43.391   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:43.422   kbarticle = KB921896
05/16/2007 13:05:43.438   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:43.453   lcid = 1040
05/16/2007 13:05:43.469   legalproductname = Parser MSXML 6.0 (64 bit)
05/16/2007 13:05:43.500   machinetype = x64
05/16/2007 13:05:43.516   package = HotFixMsxml6_x64
05/16/2007 13:05:43.532   packagetype = Hotfix
05/16/2007 13:05:43.563   productname = Redist9
05/16/2007 13:05:43.578   recommendinstall = 1
05/16/2007 13:05:43.594   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:43.610   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:43.625   splevel = 2
05/16/2007 13:05:43.641   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:43.656   upgradecode = {5BBED1F8-E6F3-4A02-BC97-26D35BE200CA}
05/16/2007 13:05:43.672   version = 9
05/16/2007 13:05:43.688
05/16/2007 13:05:43.703   File Group Details: MSI
05/16/2007 13:05:43.719     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:43.735     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:43.750     File Details: msxml6_x64.msi
05/16/2007 13:05:43.781
05/16/2007 13:05:43.797 Product Enumeration Results:
05/16/2007 13:05:43.813   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSqlxml4.inf
05/16/2007 13:05:43.828   baselinebuild = 1399
05/16/2007 13:05:43.844   build = 3042
05/16/2007 13:05:43.860   description = SQLXML4
05/16/2007 13:05:43.875   details = Service Pack per Microsoft SQLXML 4.0.
05/16/2007 13:05:43.891   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:43.906   kbarticle = KB921896
05/16/2007 13:05:43.922   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:43.938   lcid = 1040
05/16/2007 13:05:43.953   legalproductname = SQLXML4
05/16/2007 13:05:43.969   machinetype = x86
05/16/2007 13:05:43.984   package = HotFixSqlxml4
05/16/2007 13:05:44.000   packagetype = Hotfix
05/16/2007 13:05:44.016   productname = Redist9
05/16/2007 13:05:44.047   recommendinstall = 1
05/16/2007 13:05:44.063   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:44.078   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:44.094   splevel = 2
05/16/2007 13:05:44.109   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:44.125   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:44.141   upgradecode = {D9CA3D82-6F1B-41A7-8141-B90ACA8F865B}
05/16/2007 13:05:44.156   version = 9
05/16/2007 13:05:44.172
05/16/2007 13:05:44.188   File Group Details: MSI
05/16/2007 13:05:44.203     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:44.219     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:44.234     File Details: sqlxml4.msi
05/16/2007 13:05:44.266
05/16/2007 13:05:44.281 Product Enumeration Results:
05/16/2007 13:05:44.297   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSqlxml4_x64.inf
05/16/2007 13:05:44.312   baselinebuild = 1399
05/16/2007 13:05:44.328   build = 3042
05/16/2007 13:05:44.344   description = SQLXML4
05/16/2007 13:05:44.375   details = Service Pack per Microsoft SQLXML 4.0.
05/16/2007 13:05:44.391   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:44.391   kbarticle = KB921896
05/16/2007 13:05:44.422   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:44.422   lcid = 1040
05/16/2007 13:05:44.437   legalproductname = SQLXML4 (64 bit)
05/16/2007 13:05:44.453   machinetype = x64
05/16/2007 13:05:44.469   package = HotFixSqlxml4_x64
05/16/2007 13:05:44.484   packagetype = Hotfix
05/16/2007 13:05:44.500   productname = Redist9
05/16/2007 13:05:44.516   recommendinstall = 1
05/16/2007 13:05:44.531   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:44.547   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:44.562   splevel = 2
05/16/2007 13:05:44.594   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:44.609   upgradecode = {F457D8E6-7686-437D-9B17-E21D45CCABD8}
05/16/2007 13:05:44.625   version = 9
05/16/2007 13:05:44.640
05/16/2007 13:05:44.656   File Group Details: MSI
05/16/2007 13:05:44.672     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:44.687     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:44.703     File Details: sqlxml4_x64.msi
05/16/2007 13:05:44.719
05/16/2007 13:05:44.734 Product Enumeration Results:
05/16/2007 13:05:44.750   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSQLServer2005_BC.inf
05/16/2007 13:05:44.765   baselinebuild = 1399
05/16/2007 13:05:44.781   build = 2004
05/16/2007 13:05:44.797   description = CompatibilitĂ  con le versioni precedenti
05/16/2007 13:05:44.812   details = Service Pack per i componenti per la compatibilitĂ  con le versioni precedenti, tra cui Data Transformation Services Runtime e SQL-DMO.
05/16/2007 13:05:44.828   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:44.844   kbarticle = KB921896
05/16/2007 13:05:44.859   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:44.875   lcid = 1040
05/16/2007 13:05:44.890   legalproductname = CompatibilitĂ  con le versioni precedenti a Microsoft SQL Server 2005
05/16/2007 13:05:44.906   machinetype = x86
05/16/2007 13:05:44.922   package = HotFixSQLServer2005_BC
05/16/2007 13:05:44.937   packagetype = Hotfix
05/16/2007 13:05:44.953   productcode = {B532F403-16FA-4433-929C-3768090D70E3}
05/16/2007 13:05:44.968   productname = Redist9
05/16/2007 13:05:44.984   recommendinstall = 1
05/16/2007 13:05:45.015   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:45.031   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:45.047   splevel = 2
05/16/2007 13:05:45.062   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:45.078   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:45.093   upgradecode = {1E70C6C9-E1B7-4A74-BC8C-8EB5D010CEC9}
05/16/2007 13:05:45.109   version = 9
05/16/2007 13:05:45.125
05/16/2007 13:05:45.140   File Group Details: MSI
05/16/2007 13:05:45.171     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:45.187     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:45.203     File Details: SQLServer2005_BC.msi
05/16/2007 13:05:45.203
05/16/2007 13:05:45.218   Instance Details: CompatibilitĂ  con le versioni precedenti
05/16/2007 13:05:45.234     fullversion = 8.05.2004
05/16/2007 13:05:45.250     lcid = 1040
05/16/2007 13:05:45.265     productcode = {B532F403-16FA-4433-929C-3768090D70E3}
05/16/2007 13:05:45.281     qfelevel = 2004
05/16/2007 13:05:45.296     sp = -1
05/16/2007 13:05:45.312
05/16/2007 13:05:45.328 Product Enumeration Results:
05/16/2007 13:05:45.343   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSQLServer2005_BC_x64.inf
05/16/2007 13:05:45.375   baselinebuild = 1399
05/16/2007 13:05:45.375   build = 2004
05/16/2007 13:05:45.390   description = CompatibilitĂ  con le versioni precedenti
05/16/2007 13:05:45.406   details = Service Pack per i componenti per la compatibilitĂ  con le versioni precedenti, tra cui Data Transformation Services Runtime e SQL-DMO.
05/16/2007 13:05:45.421   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:45.453   kbarticle = KB921896
05/16/2007 13:05:45.453   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:45.468   lcid = 1040
05/16/2007 13:05:45.484   legalproductname = CompatibilitĂ  con le versioni precedenti a Microsoft SQL Server 2005 (64 bit)
05/16/2007 13:05:45.500   machinetype = x64
05/16/2007 13:05:45.515   package = HotFixSQLServer2005_BC_x64
05/16/2007 13:05:45.531   packagetype = Hotfix
05/16/2007 13:05:45.546   productname = Redist9
05/16/2007 13:05:45.562   recommendinstall = 1
05/16/2007 13:05:45.578   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:45.593   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:45.609   splevel = 2
05/16/2007 13:05:45.624   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:45.640   upgradecode = {7B6BF434-3C72-4DB3-8049-FEF31AEAFF9A}
05/16/2007 13:05:45.656   version = 9
05/16/2007 13:05:45.671
05/16/2007 13:05:45.703   File Group Details: MSI
05/16/2007 13:05:45.718     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:45.734     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:45.749     File Details: SQLServer2005_BC_x64.msi
05/16/2007 13:05:45.765
05/16/2007 13:05:45.781 Product Enumeration Results:
05/16/2007 13:05:45.796   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSqlWriter.inf
05/16/2007 13:05:45.812   baselinebuild = 1399
05/16/2007 13:05:45.828   build = 3042
05/16/2007 13:05:45.843   description = Microsoft SQL Server VSS Writer
05/16/2007 13:05:45.874   details = Service Pack per Microsoft SQL Server VSS Writer.
05/16/2007 13:05:45.890   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:45.906   kbarticle = KB921896
05/16/2007 13:05:45.921   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:45.937   lcid = 1040
05/16/2007 13:05:45.953   legalproductname = Microsoft SQL Server VSS Writer
05/16/2007 13:05:45.968   machinetype = x86
05/16/2007 13:05:45.984   package = HotFixSqlWriter
05/16/2007 13:05:45.999   packagetype = Hotfix
05/16/2007 13:05:46.015   productcode = {DCEFDFAB-9543-4F03-ADAE-F6729C2B9966}
05/16/2007 13:05:46.031   productname = Redist9
05/16/2007 13:05:46.062   recommendinstall = 1
05/16/2007 13:05:46.078   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:46.093   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:46.109   splevel = 2
05/16/2007 13:05:46.124   sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
05/16/2007 13:05:46.140   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:46.156   upgradecode = {65D8E1DF-6201-4B53-A0F9-E654F8E80F97}
05/16/2007 13:05:46.171   version = 9
05/16/2007 13:05:46.187
05/16/2007 13:05:46.203   File Group Details: MSI
05/16/2007 13:05:46.218     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:46.234     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:46.249     File Details: SqlWriter.msi
05/16/2007 13:05:46.281
05/16/2007 13:05:46.296   Instance Details: Microsoft SQL Server VSS Writer
05/16/2007 13:05:46.312     fullversion = 9.00.3042.00
05/16/2007 13:05:46.328     lcid = 1040
05/16/2007 13:05:46.328     productcode = {DCEFDFAB-9543-4F03-ADAE-F6729C2B9966}
05/16/2007 13:05:46.359     qfelevel = 3042
05/16/2007 13:05:46.374     sp = -1
05/16/2007 13:05:46.390
05/16/2007 13:05:46.406 Product Enumeration Results:
05/16/2007 13:05:46.421   INF File Name: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSqlWriter_x64.inf
05/16/2007 13:05:46.437   baselinebuild = 1399
05/16/2007 13:05:46.453   build = 3042
05/16/2007 13:05:46.468   description = Microsoft SQL Server VSS Writer
05/16/2007 13:05:46.484   details = Service Pack per Microsoft SQL Server VSS Writer.
05/16/2007 13:05:46.499   installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
05/16/2007 13:05:46.515   kbarticle = KB921896
05/16/2007 13:05:46.546   kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
05/16/2007 13:05:46.562   lcid = 1040
05/16/2007 13:05:46.577   legalproductname = Microsoft SQL Server VSS Writer (64 bit)
05/16/2007 13:05:46.593   machinetype = x64
05/16/2007 13:05:46.609   package = HotFixSqlWriter_x64
05/16/2007 13:05:46.640   packagetype = Hotfix
05/16/2007 13:05:46.656   productname = Redist9
05/16/2007 13:05:46.671   recommendinstall = 1
05/16/2007 13:05:46.687   relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
05/16/2007 13:05:46.718   servicepackname = Installazione di Microsoft SQL Server 2005 Service Pack 2
05/16/2007 13:05:46.734   splevel = 2
05/16/2007 13:05:46.749   supportdir = e:3f798aa49a0102c6d1f049aa36bd359d
05/16/2007 13:05:46.781   upgradecode = {E9031696-DD39-4C25-BAEB-425FF28279EA}
05/16/2007 13:05:46.796   version = 9
05/16/2007 13:05:46.796
05/16/2007 13:05:46.827   File Group Details: MSI
05/16/2007 13:05:46.843     cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
05/16/2007 13:05:46.859     sourcepath = <SUPPORTDIR><PACKAGE>Files
05/16/2007 13:05:46.874     File Details: SqlWriter_x64.msi
05/16/2007 13:05:46.890
05/16/2007 13:05:57.967 Registry: Opened registry key "SystemCurrentControlSetControlSession Manager"
05/16/2007 13:05:57.967 Registry: Read registry key value "PendingFileRenameOperations"
05/16/2007 13:05:57.982   Multi-string values:
05/16/2007 13:05:57.998 Registry: Read registry key value "PendingFileRenameOperations"
05/16/2007 13:05:58.014   Multi-string values:
05/16/2007 13:05:58.029     ??e:1971703f8a5eaa69b207
05/16/2007 13:05:58.045 PFR Check: PFR was found, but no files to be serviced were being referenced
05/16/2007 13:06:18.980 Authenticating user using SAPWD
05/16/2007 13:06:18.995 SQL Service MSSQLServer was not previously running, started for authentication
05/16/2007 13:06:19.011 Starting service: MSSQLServer
05/16/2007 13:06:23.666 Started service: MSSQLServer
05/16/2007 13:06:23.729 SQL Agent Service SQLSERVERAGENT was not previously running
05/16/2007 13:06:24.323 User authentication failed
05/16/2007 13:06:24.354   Messaggio 18456, livello 14, stato 1, server DC-01, riga 1
05/16/2007 13:06:24.385   Accesso non riuscito per l'utente 'sa'.
05/16/2007 13:06:24.416 Stopping service: MSSQLServer
05/16/2007 13:06:26.432 Stopped service: MSSQLServer
05/16/2007 13:06:29.978 Authenticating user using Windows Authentication
05/16/2007 13:06:29.994 SQL Service MSSQLServer was not previously running, started for authentication
05/16/2007 13:06:30.009 Starting service: MSSQLServer
05/16/2007 13:06:34.837 Started service: MSSQLServer
05/16/2007 13:06:34.931 SQL Agent Service SQLSERVERAGENT was not previously running
05/16/2007 13:06:35.462 Authenticating user using Windows Authentication
05/16/2007 13:06:35.477 Validating database connections using Windows Authentication
05/16/2007 13:06:35.868 Pre-script database connection check was successful - proceeding with script execution
05/16/2007 13:06:36.337 Received sysadmin status for instance: MSSQLSERVER
05/16/2007 13:06:36.352 Validating database connections using Windows Authentication
05/16/2007 13:06:36.680 Pre-script database connection check was successful - proceeding with script execution
05/16/2007 13:06:36.696 User authentication was successful
05/16/2007 13:06:36.696 Stopping service: MSSQLServer
05/16/2007 13:06:38.711 Stopped service: MSSQLServer
05/16/2007 13:06:40.461 Authenticating user using Windows Authentication
05/16/2007 13:06:40.477 SQL Service MSSQLServer was not previously running, started for authentication
05/16/2007 13:06:40.492 Starting service: MSSQLServer
05/16/2007 13:06:45.086 Started service: MSSQLServer
05/16/2007 13:06:45.101 SQL Agent Service SQLSERVERAGENT was not previously running
05/16/2007 13:06:45.523 Authenticating user using Windows Authentication
05/16/2007 13:06:45.539 Validating database connections using Windows Authentication
05/16/2007 13:06:46.085 Pre-script database connection check was successful - proceeding with script execution
05/16/2007 13:06:46.414 Received sysadmin status for instance: MSSQLSERVER
05/16/2007 13:06:46.429 Validating database connections using Windows Authentication
05/16/2007 13:06:46.742 Pre-script database connection check was successful - proceeding with script execution
05/16/2007 13:06:46.757 User authentication was successful
05/16/2007 13:06:46.773 Stopping service: MSSQLServer
05/16/2007 13:06:48.788 Stopped service: MSSQLServer
05/16/2007 13:06:48.835 Registry: Read registry key value "EnableErrorReporting", DWORD value = 0
05/16/2007 13:06:48.851 Registry: Read registry key value "EnableErrorReporting", DWORD value = 0
05/16/2007 13:06:48.866 Registry: Read registry key value "CustomerFeedBack", DWORD value = 0
05/16/2007 13:06:48.882 Registry: Read registry key value "CustomerFeedBack", DWORD value = 0
05/16/2007 13:06:55.287 Registry: Set registry key value "EnableErrorReporting", DWORD value = 0
05/16/2007 13:06:55.303 Registry: Set registry key value "EnableErrorReporting", DWORD value = 0
05/16/2007 13:06:55.319 Registry: Set registry key value "CustomerFeedBack", DWORD value = 0
05/16/2007 13:06:55.319 Registry: Set registry key value "CustomerFeedBack", DWORD value = 0
05/16/2007 13:06:55.662 Locked file: Checking for locked files
05/16/2007 13:07:05.099 Attempting to pause the 32 bit ngen queue
05/16/2007 13:07:05.271 Installing product: SQL9
05/16/2007 13:07:05.286 Installing instance: MSSQLSERVER
05/16/2007 13:07:05.302 Installing target: DC-01
05/16/2007 13:07:05.317 Installing file: sqlrun_sql.msp
05/16/2007 13:07:05.349 Copy Engine: Creating MSP install log file at: C:ProgrammiMicrosoft SQL Server90Setup BootstrapLOGHotfixSQL9_Hotfix_KB921896_sqlrun_sql.msp.log
05/16/2007 13:07:05.364 Registry: Opened registry key "SoftwarePoliciesMicrosoftWindowsInstaller"
05/16/2007 13:07:05.380 Registry: Cannot read registry key value "Debug"
05/16/2007 13:09:06.458 MSP Error: 29506  Impossibile modificare le autorizzazioni di protezione del file C:ProgrammiMicrosoft SQL ServerMSSQL.1MSSQLData per l'utente SYSTEM. Per continuare, verificare l'esistenza dell'account e del dominio che eseguono l'installazione di SQL Server. Verificare inoltre che tale account disponga dei privilegi di amministratore e che  sia presente nell'unitĂ  di destinazione.
05/16/2007 13:10:03.685 MSP returned 1603: Si è verificato un errore irreversibile durante l'installazione.
05/16/2007 13:10:03.701 Registry: Opened registry key "SoftwarePoliciesMicrosoftWindowsInstaller"
05/16/2007 13:10:03.716 Registry: Cannot read registry key value "Debug"
05/16/2007 13:10:04.248 Copy Engine: Error, unable to install MSP file: e:3f798aa49a0102c6d1f049aa36bd359dHotFixSQLFilessqlrun_sql.msp
05/16/2007 13:10:04.310 The following exception occurred: Impossibile installare il file MSP di Windows Installer  Date: 05/16/2007 13:10:04.310  File: depotsqlvaultstablesetupmainl1setupsqlsesqlsedllcopyengine.cpp  Line: 800
05/16/2007 13:10:08.966 Watson: Param1 = Do_sqlFileSDDL
05/16/2007 13:10:08.997 Watson: Param2 = 0x7342
05/16/2007 13:10:09.044 Watson: Param3 = ExceptionInSDDL
05/16/2007 13:10:09.075 Watson: Param4 = 0x7342
05/16/2007 13:10:09.106 Watson: Param5 = sqlcasqlsddlca.cpp@65
05/16/2007 13:10:09.153 Watson: Param6 = Unknown
05/16/2007 13:10:09.184 Watson: Param7 = SQL9
05/16/2007 13:10:09.200 Watson: Param8 = Hotfix@
05/16/2007 13:10:09.231 Watson: Param9 = x86
05/16/2007 13:10:09.247 Watson: Param10 = 3042
05/16/2007 13:10:09.309 Installed product: SQL9
05/16/2007 13:10:09.356 Hotfix package completed
05/16/2007 13:10:09.388 Attempting to continue the 32 bit ngen queue

View Replies !
Creating A New Connection With Microsoft SQL Server 2005 Compact Edition From Visual Studio 2005 IDE
 

Hello, How are you?   
I have a problem when I try to create a new connection with Microsoft SQL Server 2005 Compact Edition from Visual Studio 2005 IDE. When I€™m going to choose the data source, the SQL Server 2005 Compact Edition provider doesn€™t appear in the list. I installed the SQL Server 2005 Compact Edition from this page http://www.microsoft.com/downloads/details.aspx?FamilyId=%2085E0C3CE-3FA1-453A-8CE9-AF6CA20946C3&displaylang=en.  In the additional information says by installing SQLServerCE31-EN.msi installs the provider (System.Data.SqlServerCe.dll) in the GAC (global assembly cache) and registers the OLEDB provider (sqlceoledb30.dll). So, I don€™t understand why couldn€™t I create a new connection with Microsoft SQL Server 2005 Compact Edition from Visual Studio 2005 IDE?   

 

I appreciate your help€¦

View Replies !
Failed To Connect To SQL Server 2005 Database Form Microsoft Office Business Scorecard Manager 2005
Hi,all BI experts here,

Thank you very much for your kind attention.

I am having a problem with connecting to SQL Server 2005 database from Office Business Scorecard  Manager 2005 (the connection string i am using is: provider=SQLOLEDB;Data source=server_name; Initial catalog=database_name). But the connection failed. Would please any experts here shed me any light on what is the problem and how to fix it then? As there is no any forum for Office Business Scrorecard manager 2005. Therefore I post my thread here as it is related to the connection to SQL Server 2005 database engine, thought here is the best place for this question.

Thank you very in advance for your kind advices and help. And I am looking forward to hearing from you soon.

With best regards,

Yours sincerely,

 

View Replies !
Hosting Aps.net Website, Sql Server 2005 Db In App_data Or Outsite App_data?
I've started with the development of a website which will use a sql server 2005 database. I want to use the asp.net membership and roles functionality. In the end the website will be hosted by a hosting company.
What is the best way to store the database? In the App_data folder or outstide the App_data folder?
Second, do hosting companies support placing sql server databases stored into the App_data folder?

View Replies !
Microsoft SQL Server 2005 - DB
What is the maximum number of DB that I can create? Infinite?Thanks

View Replies !
Microsoft SQL Server 6.5 To 2005
Hi Fellas,
I would really appreciate if you could help me out with the following two questions?
1) Can 2005 server files be converted to 6.5? and how?
2) How easy it to upgrade from 6.5 to 2005? and how?

I would be really grateful by your help
Nick

View Replies !
About Microsoft SQL Server 2005
Hi,I have a requirement of SQL server 2005 but I am confused about the different edition like Workgroup Edition, Standard Edition, Enterprise Edition. What is the feature base difference in these editions. Can any one help me on this issue it's urgent.

I am running a database server in SQL Server 2000 websites (ASP.net application is also running there) and the database access will be high as there are number of websites accessing data from it.Thanks in advance.Ankur

View Replies !
Microsoft SQL Server 2005
I need Microsoft SQL Server 2005 direct link even if is trail
plz...

View Replies !
Microsoft SQL Server 2005 Performance
 Hi,I have a Microsoft SQL Server 2005 Enterprise installed on Windows Server 2003, and developing web application for 500 clients. So I am interested will I have any performance issues if I put in 'Articles' table, data for all 500 clients and then filter it on client ID, or should I make 500 'Articles' tables for every client one with different name and then change sqldatasource for gridview depending on which client is working on it. I will have, beside 'Articles' table, another 10 tables, which means 5500 tables total, if I use second approach, on first I will have only 11 tables. So I am asking is it better to have more tables with less data, or less tables with more data. And what are pros and cons for both approach. Thanks a lot! 

View Replies !
Microsoft Analysis Server 2005 And .NET 1.1
Hi,
Firstly, I had to post this query here since I did not find any other place relating to Microsoft SQL Analysis Server 2005 and that it is related to SQL server 2005.
I am using Microsoft SQL analysis server 2005 and .NET 1.1 for Asp.NET (C#)
I need to programmatically create Measures, Dimensions and Cubes using .Net 1.1 (C#) in an Asp.NET page, and then I need to access the measures, dimensions and cubes again from another Asp.Net page.
My querys are:
1. To create and manipulate the SQL Analysis server objects like Dimensions, Cubes what should I use? The documentation for Analysis server 2005 says we can use (Analysis Management Objects)AMO. but I am not sure if we can use it with .NET 1.1?
2. If AMO is possible, then what to use? There is one more technology we can use called as (Deciscion Suport Objects) DSO. but they are COM based and were for Analysis services 2000.
3. To query the data, what technology can I use? Microsoft says we can use ADOMD.NET. Microsoft also gives many other technologies that I think do similar work, like XMLA, ASSL.
Can somebody help me in this.
Also please do give me some links that have code samples for the same.
 
Thanks and Regards
Vijay R
 
 

View Replies !
Microsoft SQL Server 2005 Driver For PHP
Hi,

I am unable to get PHP to load the drivers from the package.
I have tried adding the followings in c:windowsphp.ini (as indicated by phpinfo):

[PHP_MSSQL]
extension=php_sqlsrv.dll
and
[PHP_MSSQL]
extension=php_sqlsrv_ts.dll

I have tried restarting IIS & rebooting my PC without any effect.
phpinfo just does show any traces of MSSQL.

The SQL Native Client have also been installed.
I can connect & execute query using the SQL Server Management Studio.
I can telnet to port 1433.

What have I missed?

Thanks,

View Replies !
Microsoft SQL Server 2005 SP2 Issue
An issue was recently discovered with SQL Server 2005 SP2 which might impact customers using cleanup tasks in Maintenance Plans and SQL Server Integration Services packages. The issue is described in detail here. We have created a General Distribution Release (GDR) #50000939 to address this issue which is available for download and we have included the GDR in a refresh of the SP2 installation package.
 
Customers who download SP2 starting Monday, March 5th, 2007 will not need to need any further action since the refreshed SP2 installation package includes the necessary GDR.
 
We recommend that everyone who has downloaded and installed SP2 prior to March 5th, 2007 apply the GDR either from Microsoft Update or by downloading it directly from http://go.microsoft.com/fwlink/?LinkId=85124. As described in the KB article, this is primarily for customers who use cleanup tasks in maintenance plans and SQL Server Integration Services packages.
 
 
Maintenance Plan Changes in SQL Server 2005 SP2
Users of SQL Server 2005 maintenance plans and SQL Server Integration Services should be aware of a change in SP2 that affects existing cleanup tasks until updated using SQL Server SP2 tools.
 
Who is affected?
You are affected if you use cleanup tasks in Maintenance Plans and SQL Server Integration Services packages, those plans include a History Cleanup Task or a Maintenance Cleanup Task, and you install SQL Server 2005 SP2. Users of SQL Server 2000 legacy maintenance plans are not affected.
 
What is the issue?
When SQL Server 2005 was released, cleanup intervals were measured in days, weeks, months, or years. In response to customer feedback, SQL Server 2005 SP2 includes significant enhancements to maintenance plans. These include an enhancement that lets users specify the cleanup interval in hours.
The change in intervals caused the initial release of SQL Server 2005 SP2 to misinterpret existing cleanup task intervals in maintenance plans and Integration Services packages. This can lead to the files being cleaned up earlier than intended. The issue is described in detail here.
 
What if I have already installed SP2 on my server?
If you downloaded SQL Server 2005 SP2 before Monday, March 5th, 2007, install a general distribution release (GDR) update for those SQL Server 2005 SP2 installations. The GDR is available at the Microsoft Download Center:

Critical Update for SQL Server 2005 Service Pack 2
After you install this GDR, you might have to restart your computer.
This GDR is also available through Microsoft Update, and will be applied automatically if you are using automatic updates. However, if you are using failover clustering, you must download and apply the GDR manually. Microsoft Update will not apply the GDR to failover cluster nodes.
 
 
What if I haven't yet installed SP2 on my server?
SQL Server 2005 RTM and SQL Server 2005 SP1 do not have this issue, and the current SQL Server 2005 SP2 download is updated to resolve this issue. If you have not installed the initial release of SP2, you can download the current release and install it.
Note: If you try to apply the SP2 refresh over a previous SP2 installation, no files are updated. Instead, use the general distribution release (GDR) update below.

View Replies !
Microsoft SQL Server 2005 Driver For PHP CTP
 
The Microsoft SQL Server Driver for PHP Team is proud to announce the availability of the Microsoft SQL Server 2005 Driver for PHP CTP. This driver is a PHP 5 extension that allows the reading and writing of SQL Server data from within PHP scripts. The extension provides a procedural interface for accessing data in all editions (including Express editions) of SQL Server 2005 and SQL Server 2000. The API makes use of PHP features, including PHP streams to read and write large objects.
 
The SQL Server 2005 Driver for PHP Community Technology Preview (October 2007) is a preview release not intended for production purposes and can be downloaded here. To provide feedback or to get more information, visit our team blog at http://blogs.msdn.com/sqlphp . Please post any questions you have about this CTP release in this forum.
 
Thanks.
The SQL Server Driver for PHP Team

View Replies !
Microsoft SQL Server 2005 Multilanguage
Hello,

I need the Microsoft SQL Server 2005 Edition Express SP2 and the Management Studio Express SP2 in 4 languages (French, English, German, Spanish).

Where can I found a multilanguage (if exist) and the parameters to an unnaattended install off the Management Studio Express (I have for the Server 2005 Edition Express)?

In the same Idea, It's also exist for the Framework 2.0 (and the parameters)?

Thanks in advance

Best Regards

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved