SQL SERVER DATABASE � SQL Much Tips
backup server to cloud, backup server 2012 r2, xenserver vm backup, backup exec server 2012, backup gpo server 2012, backup server software, backup server 2012, barracuda backup server 690, backup server image, backup server service, backup server to onedrive, backup server, backup server linux, backup server veeam, yosemite server backup basic download, barracuda backup server 890, backup server cloud, backup server online, backup server hardware, backup server 2012 to nas, backup server software free, backup server vmware, backup server synology, backup exec server, backup server nas, data recovery raid, raid 5 data recovery, data recovery raid 1, recover data from raid, data recovery raid 5, data recovery raid 0, recover data raid 0, recover data from raid 0 hard drive, recover data raid 5, raid data recovery nyc, raid data recovery toronto, data recovery from raid, data recovery from raid 0, best raid data recovery software, raid data recovery london, raid data recovery cost, raid 5 data recovery tools, raid data recovery los angeles, data recovery from raid 5 disk, data recovery on raid 5, data recovery raid 5 array, recover data raid drive, data recovery raid software, raid data recovery free download,
SQL SERVER � SQL Error � MsiGetProductInfo failed to retrieve ProductVersion for package with Product Code = '{8BDD006D-7863-4D25-9806-08527E285EA4}'. | Backup Server Tips
Problem.
Overall summary:
Final result: Failed: see details below
Exit code (Decimal): 2064843076
Exit facility code: 787
Exit error code: 324
Exit message: MsiGetProductInfo failed to retrieve ProductVersion for package with Product Code = '{8BDD006D-7863-4D25-9806-08527E285EA4}'. Error code: 1605.
Start time: 2009-07-28 18:30:43
End time: 2009-07-28 18:31:14
Requested action: ComponentUpdate
Log with failure: C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20090728_182952\Detail_ComponentUpdate.txt
Exception help link: http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.0.1600.22%26EvtType%3d0x4E099C65%400x7B130144
The error happened during the installation of a SQL Server 2008.
Solution / Fix / Workaround
The above remark line show us the product code related with the error. First, is necessary to know that SQL Server 2008 has around of 30 products registered on the Registry. Each product has a Product code and an installation code as well (GUID).
For this case the Product Code is the following:
{8BDD006D-7863-4D25-9806-08527E285EA4}
The Installation Code is build with the product code in reverse form:
D600DD8368752D460894AE582E72580
One time that you got the Installation Code look into the Windows Registry and delete all the entries found.
Then try again the installation and the result must to be SUCCESSFULLY.
SQL SERVER � SQL Daily Tips � Backup your database without affect the normal backup sequence. | Backup Server Tips
BACKUP DATABASE db_name TO disk='C:\db_name.bkp' WITH COPY_ONLY
This option COPY_ONLY, can be performed for any backup type. COPY_ONLY has certains behaviors depending of the backup type:
* A log backup taken using copy_only, does not truncate the transaction log.
* A data backup taken using copy_only cannot be used as base backup for differential or incremental backups.
* A differential backup has not effect with copy_only option.
SQL SERVER � Server Configurations Options � Allow updates | Backup Server Tips
This option is present when sp_configure is executed or when sys.configuration is queried, but this functionality is unavailable since SQL Server 2005, it is obsolete. Direct updates to system objects are not allowed. If sp_configure is used to enable the option, this configuration has not effect. In previous versions as SQL Server 2000 this functionality is available.
Testing the option
The following code enable the option �allow updates�, then a table is created and finally an update to system table is executed:
sp_configure 'allow updates', 1
GO
RECONFIGURE with override
GO
CREATE TABLE TBLTEST (TESTFIELD INT )
GO
update sys.objects
set name = 'TBLTEST_1'
where name = 'TBLTEST'
GO
When the update to system table is triggered the following error is shown:
Msg 259, Level 16, State 1, Line 1
Ad hoc updates to system catalogs are not allowed.
This option is not advanced option and is not necessary enable the �show advanced options�. To understand in a better way if a certain option is or is not advanced, if it is dynamic or is necessary restart, please refer SQL SERVER � Server Configurations Options � Catalog View � sys.configurations
SQL SERVER � SQL Daily Tips � Monitoring progress for tasks. | Backup Server Tips
SQL Server 2005 introduces Dynamic Management View, one of this objects allows us monitoring the progress for different tasks and process in SQL Server.
select percent_complete, estimated_completion_time, cpu_time, total_elapsed_time, *
from sys.dm_exec_requests
this query is very helpful in the daily work to monitoring different tasks.
SQL SERVER � Server Configurations Options � Agent XPs Option | Backup Server Tips
The Server configuration option called Agent XPs is used to enabled the SQL Server Agent extended stored procedures on the server. When this option is disabled, the SQL Server Agent node is not enabled in SQL Server Management Studio and you can not use the SQL Server Agent Service.

When the SQL Server agent is restarted, the extended stored procedures are enabled automatically.
To enabled this option:
sp_configure 'show advanced options', 1
GO
RECONFIGURE with override
GO
sp_configure 'Agent XPs', 1
GO
RECONFIGURE with override
GO
sp_configure 'show advanced options', 0
GO
RECONFIGURE with override
GO
This option is an advanced option and is necessary enable first the �show advanced options�. To understand in a better way if a certain option is or is not advanced, if it is dynamic or is necessary restart, please refer SQL SERVER � Server Configurations Options � Catalog View � sys.configurations

