-
Converting Physical Citrix Server to VMware Using VMware Converter
Posted on September 14th, 2008 2 comments
Print
We converted one of our physical Citrix servers yesterday to VMware ESXi also and it went smoothly as well. No issues so far, so if you’re thinking of doing the same thing I can confirm that it works.
We also use RSA SecurID for authentication and it still works after the conversion with no changes made to the RSA Authentication Manager or RSA ACE Agent (using the same IP address after the conversion of course).
More P2V conversions next week
. -
Converting Microsoft Virtual Server 2005 Virtual Machines to VMware
Posted on September 14th, 2008 No comments
Print
We just converted 3 of our virtual machines running on Virtual Server 2005 R2 to VMware ESXi yesterday and it went pretty smoothly with just a couple of minor issues.
The first issue is the mouse cursor not working in VMware console after installing the VMware tools. The fix is just a simple registry edit:
- Open Registry Editor (regedit)
- Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Class\{4D36E96F-E325-11CE-BFC1-08002BE10318}
- Double-click on UpperFilters and delete msvmmouf.
- Reboot the VM.
Source: http://www.petri.co.il/forums/archive/index.php/t-19387.html
The second minor issue is when you try to set the static IP address to the same IP address before it was converted, you might receive a message similar to this:
The IP address XXX.XXX.XXX.XXX you have entered for this network adapter is already assigned to another adapter Name of adapter. Name of adapter is hidden from the network and Dial-up Connections folder because it is not physically in the computer or is a legacy adapter that is not working. If the same address is assigned to both adapters and they become active, only one of them will use this address. This may result in incorrect system configuration. Do you want to enter a different IP address for this adapter in the list of IP addresses in the advanced dialog box?
This is probably not a big deal, but if it bothers you just do the following:
- Click Start, click Run, type cmd.exe, and then press ENTER.
- Type set devmgr_show_nonpresent_devices=1, and then press ENTER.
- Type Start DEVMGMT.MSC, and then press ENTER.
- Click View, and then click Show Hidden Devices.
- Expand the Network Adapters tree.
- Right-click the dimmed network adapter, and then click Uninstall.
-
How to query a Microsoft Office Access database from SQL Server
Posted on September 6th, 2008 No comments
Print
I was doing this yesterday to query our call logs which are stored in an Access database. I figured it would be really nice to be able to query our databases from one application. The software that came with our phone system to generate reports from the call logs is also not that flexible. It’s just much easier for me to run reports using SQL Server Query Analyzer plus we can join the tables from other databases with it easily if we need to.
Just open Query Analyzer and execute this command:
sp_addlinkedserver 'LinkedServerName', 'ProductName', 'Microsoft.Jet.OLEDB.4.0', 'path_to_access_database_file'
Example:
sp_addlinkedserver 'Server1_NBXdb', 'MS Access', 'Microsoft.Jet.OLEDB.4.0', '\\server1\nbxcdr.mdb'
To query the database, use this format:
select * from openquery(linked_server_name,'select * from table_name')
or
select * from linked_server_name...table_name
For more information, please visit this website where I got this information from: Configuring a Linked Microsoft Access Server on SQL 2005 Server


Recent Comments