Quantcast
Channel: Stephen's Host Integration Server Blog
Viewing all 66 articles
Browse latest View live

Host Integration Server 2010 Cumulative Update 5 (CU5) is available

$
0
0

The Host Integration Server Product Team has just released the fifth Cumulative Update (CU) for HIS 2010. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2010 CU5 includes fixes for HIS 2010 that were fixed after the release of HIS 2010, including all the fixes that are in the previous HIS 2010 cumulative updates. Details on the included fixes can be found in the following Knowledge Base article:

2728515    Cumulative update package 5 for Host Integration Server 2010
http://support.microsoft.com/kb/2728515/EN-US

You can download HIS 2010 CU5 via the Hotfix Download Available link in the KB article. You would need to download the CU5 package that matches the HIS 2010 version (x86 or x64) that you have installed.


Host Integration Server 2010 Cumulative Update 6 (CU6) is available

$
0
0

The Host Integration Server Product Team has just released the sixth Cumulative Update (CU) for HIS 2010. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2010 CU6 includes fixes for HIS 2010 that were fixed after the release of HIS 2010, including all the fixes that are in the previous HIS 2010 cumulative updates. Details on the included fixes can be found in the following Knowledge Base article:

2752426    Cumulative update package 6 for Host Integration Server 2010
http://support.microsoft.com/kb/2752426/EN-US

You can download HIS 2010 CU6 via the Hotfix Download Available link You would need to download the CU6 package that matches the HIS 2010 version (x86 or x64) that you have installed.

Host Integration Server 2009 Cumulative Update 4 (CU4) is available

$
0
0

The Host Integration Server Product Team has just released the fourth Cumulative Update (CU) for HIS 2009. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2009 CU4 includes fixes for HIS 2009 that were fixed after the release of HIS 2009, including all the fixes that are in the previous HIS 2009 cumulative updates. Details on the included fixes can be found in the following Knowledge Base article:

2765212 Cumulative update package 4 for Host Integration Server 2009

You can download HIS 2009 CU4 via the Hotfix Download Available link in the KB article. You would need to download the CU4 package that matches the HIS 2009 version (x86 or x64) that you have installed.

Thanks…

Microsoft OLE DB Provider for DB2 V4.0 Refresh is available

$
0
0

We have released an updated version of the standalone OLE DB Provider for DB2 V4.0 in the SQL Server 2012 SP1 Feature Pack. The Microsoft OLE DB Provider for DB2 V4.0 Refresh includes a number of fixes and product improvements since the initial release of the Microsoft OLE DB Provider for DB2 V4.0 that was included in the SQL Server 2012 Feature Pack.

The SQL Server 2012 SP1 Feature Pack download page is http://www.microsoft.com/en-us/download/details.aspx?id=35580.

On this page, there is a long list of features that can be downloaded. The Microsoft OLE DB Provider for DB2 V4.0 Refresh packages are as follows:

- ENU\x64\DB2OLEDBV4_x64.msi

- ENU\x86\DB2OLEDBV4_x86.msi

If you are using SQL Server 2008 R2 or SQL Server 2012 and are connecting to (or plan on connecting to) IBM DB2 databases, then you should download and use this updated DB2 Provider.

Missing data when querying IBM DB2 tables due to code page issues

$
0
0

We recently worked on a support case where a customer was using the Data Access Tool (DAT), which is included with Host Integration Server and the Microsoft OLE DB Provider for DB2 that is included in SQL Server Feature Packs, We often suggest that you use the DAT to create the connection string (UDL) that is used to connect to your IBM DB2 systems and then to run the Sample Query to the connection string to see if you are able to make a basic query without error.

In this case, the data returned by the Sample Query was incomplete.

The Sample Query issues a query against the SYSTABLES table in DB2. SYSTABLES is a system catalog tables that contains information about each table that is defined in the database. When you run the Sample Query in the DAT, it sends a query to DB2 to get a list of the tables that are defined in the Schema that is specified in the connection string. The following is a sample query that is sent to DB2 for AS/400 when the Schema is set to TESTUSER:

SELECT '' as TABLE_QUALIFIER, VARCHAR (RTRIM (TABLE_SCHEMA), 128) as TABLE_OWNER, VARCHAR (RTRIM (TABLE_NAME), 128) as TABLE_NAME, VARCHAR (RTRIM (TABLE_TYPE), 128) as TABLE_TYPE, VARCHAR (TABLE_TEXT, 51) as REMARKS, CASE WHEN TABLE_TYPE = 'A' THEN 1 WHEN TABLE_TYPE IN ('P', 'T') THEN 2 WHEN TABLE_TYPE IN ('L', 'V') THEN 3 ELSE 4 END AS SORTORDER, VARCHAR (RTRIM (BASE_TABLE_SCHEMA), 128), VARCHAR (RTRIM (BASE_TABLE_NAME), 128) FROM QSYS2.SYSTABLES WHERE TABLE_SCHEMA = 'TESTUSER' ORDER BY SORTORDER, TABLE_OWNER, TABLE_NAME FOR FETCH ONLY

Actually, this is the second SYSTABLES query that is sent by the DAT because the first query actually looks for SYSTABLES in the specified schema first. The first query would have specified TESTUSER.SYSTABLES for the query. If SYSTABLES is not in that location, the query completes with an error and the query above is sent to look for SYSTABLES in the default schema (or library when connecting to DB2 for AS/400).

The result of the query should be a list of tables that exist in the specified SCHEMA. These tables along with some additional information about these tables is displayed in a grid in the DAT. The following is an example of these results using example data:

Table_CatalogTable_SchemaTable_NameTable_TypeTable_GUIDDescriptionTables_PropertiesDate_CreatedData_Modified
DB2HOSTTESTUSERTABLE1TABLE(null)Test 1 (null)(null)(null)
DB2HOSTTESTUSERTABLE2TABLE(null)Test 2(null)(null)(null)
DB2HOSTTESTUSERTABLE3TABLE(null)Test 3(null)(null)(null)
DB2HOSTTESTUSERTABLE4TABLE(null)Test 4(null)(null)(null)

In this particular case where the Sample Query data was incomplete when viewed in the DAT, the TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE, and Description columns didn’t include any data. The TABLE_QUALIFER column did contain the correct data.

We suggested that they also try running this same query from a Linked Server within SQL Server using the Microsoft OLE DB Provider for DB2 (which is what the DAT was also using). The results were the same in that the data was not correctly displayed.

At this point, we had to proceed to our normal troubleshooting steps which meant capturing the scenario with DB2 Network Library traces (using snatrace.exe) and a network trace that captured the data flow between the Windows Server and the IBM DB2 system (an iSeries or AS/400 in this case).

After looking at the traces, we found that the problem was caused by a code page (CCSID) mismatch. DB2 was returning the metadata for the SYSTABLES information for the tables that were defined in the SCHEMA specified in the connection string. Part of the metadata is the CCSID (code page) for each of the columns in the SYSTABLES table. The following table is a breakout of the CCSID information returned for the key columns:

Column_NameCCSID
Table_CatalogX’0025’ (37)
Table_SchemaX’7025’ (28709)
Table_NameX’7025’ (28709)
Table_TypeX’7025’ (28709)
DescriptionX’3A9’ (937)

 

CCSID 28709 is Traditional Chinese (extended) and CCSID 937 is Traditional Chinese (extended) including 4370 UDC (user defined characters). 28709 is a Single-Byte Character Set for Traditional Chinese, while 937 is a Mixed Byte Character Set for Traditional Chinese.

So DB2 is saying that these columns are defined using Chinese code pages, even though they don’t actually contain Chinese data. We never discovered why this was the case, but it explained why the data was not being displayed in the DAT following the query.

The connection string included the following settings for the code pages:

Host CCSID=37
PC Code Page=1252

CCSID 37 is an EBCDIC – U.S./Canada code page and this code page is not able to translate the incoming “Chinese” data to code page 1252 (ANSI – Latin I).

You can also see the data conversion problem when viewing the DB2 Message trace (DB2MSG1.ATF) captured by the snatrace.exe tool. The following shows the data conversion sequence:

Converting multibyte data with CCSID 0X03A9 to multibyte data with CCSID 0X04E4

NLS   -----------------------------------------------------------------------
NLS   Input: Length = 7
NLS   D7D9D6C4 C4E3C1      
NLS   -----------------------------------------------------------------------
NLS   Output: Length = 0

GetColumnData for column 3
Converting multibyte data with CCSID 0X03A9 to multibyte data with CCSID 0X04E4

NLS   -----------------------------------------------------------------------
NLS   Input: Length = 8
NLS   C3D5C2C6 F0F4F1F1      
NLS   -----------------------------------------------------------------------
NLS   Output: Length = 0

GetColumnData for column 5
Converting multibyte data with CCSID 0X03A9 to multibyte data with CCSID 0X04E4

NLS   -----------------------------------------------------------------------
NLS   Input: Length = 50
NLS   40404040 40404040 40404040 40404040 40404040 40404040 40404040 40404040
NLS   40404040 40404040 40404040 40404040 4040   
NLS   -----------------------------------------------------------------------
NLS   Output: Length = 0

In the data above, you can see the “from” CCSID (e.g. 0X03A9, which is 937) and the “to” CCSID (e.g. 0X04E4, which is 1252). As you can see above, the “Output Length” for the data conversion is 0, so no data is displayed in the DAT output because there is no converted data to display.

The solution to this was to change the code page settings specified in the connection string from the settings above to the following settings:

Host CCSID=937
PC Code Page=950

After making this change, the data for all of the columns was correctly displayed in the DAT when running the sample query.

As a side note, we also created a sample C# application that used the Managed Provider for DB2 (included with Host Integration Server) to perform this same SYSTABLES query. In this case, all of the data was correctly written when using this application. This brings up the question as to why this application using the Managed Provider for DB2 did not experience the same code page problem as the OLE DB Provider for DB2.

The answer is that in C# all string (CHAR) data types are considered to be Unicode. Therefore, the Managed Provider for DB2 uses a Unicode CCSID when doing the code page conversions and this code page can handle the “Chinese” data (which really isn’t Chinese, it just indicates Chinese based on the CCSID for the columns).

In the failing case (non C#), the Data Access Tool and the Distributed Query Processor (used by Linked Servers in SQL) are smarter in that they support multiple data types so they don’t assume all string data types are Unicode. These consumers actually try to use the data types indicated in the returned metadata from DB2.

The moral of the story is that unexpected code page issues can pop up and cause some unusual symptoms when running queries against DB2.

BizTalk Adapter for DB2 unable to call DB2 Stored Procedure on AS/400 if Specific Name doesn’t match Procedure Name

$
0
0

If you have created DB2 Stored Procedures on an IBM iSeries (AS/400) that have a SPECIFIC name that differs from the PROCEDURE name, the BizTalk Adapter for DB2 does not correctly enumerate these Stored Procedures in the DB2 Adapter Schema Generation Wizard.

For example, I created the following Stored Procedure on an iSeries V7R1 system:

- CREATE PROCEDURE SP_TEST1LONGSTOREDPROCNAME2 (

                IN I_COL1 VARCHAR(8000) , 
                IN I_COL2 CHAR(160) , 
                OUT O_COL2 CHAR(160) ) 
                DYNAMIC RESULT SETS 1 
                LANGUAGE SQL
                SPECIFIC TEST1NAME2

                BEGIN

                            DECLARE R1 INT;
                            DECLARE C1 CURSOR FOR
                                             SELECT COL2 FROM TESTLIB.SPTEST1 WHERE COL1 = I_COL1 ; 
                            DECLARE C2 CURSOR WITH RETURN FOR 
                                             SELECT * FROM TESTLIB.SPTEST1 ; 
                            DECLARE C3 CURSOR for
                                             SELECT COUNT(*) FROM TESTLIB.SPTEST1;
                            INSERT INTO TESTLIB.SPTEST1 ( COL1 , COL2 ) 
                                             VALUES ( I_COL1 , I_COL2 ) ; 
                            OPEN C1 ; 
                            OPEN C2 ; 
                            OPEN C3;
                            FETCH C1 INTO O_COL2 ; 
                            FETCH C3 INTO R1;
                            RETURN 10;
                  END')

In this example, the Procedure Name is SP_TEST1LONGSTOREDPROCNAME2 and the SPECIFIC name is TEST1NAME2. The Stored Procedure has 3 parameters (2 IN and 1 OUT). If I run the DB2 Adapter Schema Generation Wizard from within Visual Studio while working on my BizTalk Adapter for DB2 Application project, SP_TEST1LONGSTOREDPROCNAME2  is returned as one of the Stored Procedures in my library, but it doesn’t list the parameters.

If I recreate this Stored Procedure, but I make the SPECIFIC name the same as the PROCEDURE name (or if I leave it blank), the DB2 Adapter Schema Generation Wizard shows the Stored Procedure and it lists all of the parameter for the procedure.

Upon further investigation, I found that the query issued by the BizTalk Adapter for DB2 to obtain the metadata (e.g. parameter information) for the Stored Procedure passes the PROCEDURE name as the SPECIFIC name when connecting to DB2/400 (iSeries) systems. The metadata query is shown here for this test scenario:

SELECT ''  AS PROCEDURE_CAT, RTRIM(SPECIFIC_SCHEMA)  AS PROCEDURE_SCHEM, RTRIM(SPECIFIC_NAME)  AS PROCEDURE_NAME, RTRIM(PARAMETER_NAME)  AS COLUMN_NAME, ORDINAL_POSITION AS ORDINAL_POSITION, RTRIM(PARAMETER_MODE)  AS COLUMN_TYPE, RTRIM(DATA_TYPE)  AS TYPE_NAME, CHARACTER_MAXIMUM_LENGTH AS COLUMN_SIZE, NUMERIC_PRECISION AS PRECISION, NUMERIC_SCALE AS DECIMAL_DIGITS, RTRIM(IS_NULLABLE)  AS NULLABLE, CCSID AS CCSID, RTRIM(LONG_COMMENT)  AS REMARKS FROM QSYS2.SYSPARMS WHERE SPECIFIC_SCHEMA = 'TESTLIB' AND SPECIFIC_NAME = 'SP_TEST1LONGSTOREDPROCNAME' ORDER BY PROCEDURE_CAT, PROCEDURE_SCHEM, PROCEDURE_NAME, ORDINAL_POSITION FOR FETCH ONLY

In this case, DB2 does not have a Stored Procedure with a SPECIFIC name = SP_TEST1LONGSTOREDPROCNAME so it is not located and no metadata is returned to the DB2 Adapter Schema Generation Wizard.

If the DB2 Adapter is unable to obtain the correct metadata for the Stored Procedure, you will encounter errors if the BizTalk Server application uses the DB2 Adapter to call the Stored Procedure.

 

This problem was just recently reported by a customer on the HIS Forum, so it appears that having Stored Procedures on IBM iSeries (AS/400) systems with different PROCEDURE and SPECIFIC names is not very common. However, it is something to keep in mind when using the BizTalk Adapter for DB2 to call Stored Procedures on iSeries systems.

Troubleshooting Host Integration Server Event 23 and Event 230 errors

$
0
0

I recently wrote a couple of Knowledge Base articles that are intended to explain why an HIS Server logs one of the following event messages:

- Event ID: 23

- Event ID: 230

These are very common errors that occur when using HIS Server especially if you still use the 802.2 DLC link service to connect to IBM host systems via the DLC protocol.

The articles also contain troubleshooting steps that can help you capture diagnostics information that the HIS Support Team requires when working on these types of problems. You may also be able to use the diagnostics to determine the root cause of the problem to resolve it without needing to call support.

2824716    Troubleshooting Host Integration Server Event 23 Warnings
http://support.microsoft.com/kb/2824716/EN-US

2834567    Troubleshooting Host Integration Server Event 230 Warnings
http://support.microsoft.com/kb/2834567/EN-US

I hope the information in these articles is helpful.

Thanks…

Host Integration Server 2010 Cumulative Update 7 (CU7) is available

$
0
0

The Host Integration Server Product Team has just released the seventh Cumulative Update (CU) for HIS 2010. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2010 CU7 includes fixes for HIS 2010 that were fixed after the release of HIS 2010, including all the fixes that are in the previous HIS 2010 cumulative updates. Details on the included fixes can be found in the following Knowledge Base article:

2783797 Cumulative update package 7 for Host Integration Server 2010

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

You can download HIS 2010 CU7 via the Hotfix Download Available link. You need to download the CU7 package that matches the HIS 2010 version (x86 or x64) that you have installed.


Host Integration Server 2009 Cumulative Update 5 (CU5) is available

$
0
0

The Host Integration Server Product Team has just released the fifth Cumulative Update (CU) for HIS 2009. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2009 CU5 includes fixes for HIS 2009 that were fixed after the release of HIS 2009, including all the fixes that are in the previous HIS 2009 cumulative updates. Details on the included fixes can be found in the following Knowledge Base article:

2814103 Cumulative update package 5 for Host Integration Server 2009

You can download HIS 2009 CU5 via the Hotfix Download Available link in the KB article. You would need to download the CU5 package that matches the HIS 2009 version (x86 or x64) that you have installed.

Thanks…

Updated documentation for the Microsoft OLE DB Provider for DB2 Version 3.0 is available

Host Integration Server 2010 Cumulative Update 1 (CU1) is available

$
0
0

The Host Integration Server Product Team has just released the first Cumulative Update (CU) for HIS 2010. The cumulative update model is something that SQL Server and Biztalk Server also use to package and release product fixes on a more consistent schedule.

HIS 2010 CU1 includes fixes for HIS 2010 that were fixed after the release of HIS 2010. Details on the included fixes can be found in the following Knowledge Base article:

2533330    Cumulative update package 1 for Host Integration Server 2010
http://support.microsoft.com/default.aspx?scid=kb;EN-US;2533330

There are some additional fixes that are not yet listed in this KB article because the KB articles for those specific fixes are not yet completed. Once these other KB articles are completed, article 2533330 will be updated to include links to those articles as well.

You can download HIS 2010 CU1 via the View and request hotfix downloads link in the KB article. You would need to download the CU1 package that matches the HIS 2010 version (x86 or x64) that you have installed.

Thanks…

Host Integration Server 2009 Cumulative Update 1 (CU1) is available

$
0
0

The Host Integration Server Product Team has just released the first Cumulative Update (CU) for HIS 2009. The cumulative update model is something that SQL Server and Biztalk Server also use to package and release product fixes on a more consistent schedule.

This cumulative update (CU) is a rollup update that contains the following items:

  • All previously released hotfixes for Host Integration Server 2009
  • Some hotfixes for Microsoft Host Integration Server 2006 and for Microsoft Host Integration Server 2010
  • Some additional improvements

Details on the included fixes can be found in the following Knowledge Base article:

Cumulative update package 1 for Host Integration Server 2009 

http://support.microsoft.com/kb/2587090

There are some additional fixes that are not yet listed in this KB article because the KB articles for those specific fixes are not yet completed. Once these other KB articles are completed, article 2587090 will be updated to include links to those articles as well.

You can download HIS 2009 CU1 via the View and request hotfix downloads link in the KB article. You would need to download the CU1 package that matches the HIS 2009 version (x86 or x64) that you have installed.

The HIS 2009 CU1 release follows the HIS 2010 CU1 released as described at http://blogs.msdn.com/b/sjackson/archive/2011/08/22/host-integration-server-2010-cumulative-update-1-cu1-is-available.aspx.

Thanks…

HIS 2010 Licensing FAQ

$
0
0

A HIS 2010 Licensing document has just been posted at http://www.microsoft.com/download/en/details.aspx?id=27553.

Ever since HIS started being licensed as part of BizTalk Server back with the BizTalk Server 2006 R2 release, there have been lots of questions around HIS licensing and usage. Hopefully, this updated FAQ will help answer many of these questions.

Thanks…

Host Integration Server 2010 Cumulative Update 2 (CU2) is available

$
0
0

The Host Integration Server Product Team has just released the second Cumulative Update (CU) for HIS 2010. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2010 CU2 includes fixes for HIS 2010 that were fixed after the release of HIS 2010, including all the fixes that are in HIS 2010 CU1. Details on the included fixes can be found in the following Knowledge Base article:

2616519 Cumulative update package 2 for Host Integration Server 2010
http://support.microsoft.com/default.aspx?scid=kb;EN-US;2616519

There are some additional fixes that are not yet listed in this KB article because the KB articles for those specific fixes are not yet completed. Once these other KB articles are completed, article 2616519 will be updated to include links to those articles as well.

One of the key features included in HIS 2010 CU2 is the support for 32-bit SNA applications (such as 3270 emulators and APPC applications) on 64-bit versions of HIS 2010. This particular feature will be detailed in KB article 2532670, which should be available shortly.

You can download HIS 2010 CU2 via the View and request hotfix downloads link in the KB article. You would need to download the CU2 package that matches the HIS 2010 version (x86 or x64) that you have installed.

Thanks…

Host Integration Server 2009 Cumulative Update 2 (CU2) is available

$
0
0

The Host Integration Server Product Team has just released the second Cumulative Update (CU) for HIS 2009. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2009 CU2 includes fixes for HIS 2009 that were fixed after the release of HIS 2009, including all the fixes that are in HIS 2009 CU1. Details on the included fixes can be found in the following Knowledge Base article:

2645939              Cumulative update package 2 for Host Integration Server 2009
http://support.microsoft.com/default.aspx?scid=kb;EN-US;2645939

HIS 2009 CU2 includes 7 new fixes that were not included in HIS 2009 CU1.

You can download HIS 2009 CU2 via the View and request hotfix downloads link in the KB article. You would need to download the CU2 package that matches the HIS 2009 version (x86 or x64) that you have installed.

Thanks…


Support for HIS 2000 ends on January 10, 2012

$
0
0

HIS 2000 has been in the Extended Support phase of its lifecycle since January 9, 2007. Per the Lifecycle Support policy, the support lifecycle for HIS 2000 ends on January 10, 2012. Click the following link to see the HIS 2000 lifecycle information:

HIS 2000 Lifecycle

If you are still using HIS 2000, it would be a great time to ramp up the migration/upgrade plans.

Thanks…

HIS 2010 - .NET Managed C++ Extensions Sample for CPI-C

$
0
0

 

One of the HIS Product Team Test Engineers has put together a .NET Managed C++ Extensions Sample for CPI-C that can be used with HIS 2010. Here is an overview of the sample:

This sample is a Visual Studio 2010 Sample project. This project is a .NET Managed C++ extensions for utilizing CPI-C (WinCPIC32) API included with Host Integration Server. The sample code file is a TP program based on the APINGD. In the readme file includes a sample to call this DLL from a .NET Managed C# application/service. Also, exported interfaces for the Native C++ DLL will allow for a .NET application to utilize P/Invoke to call wrapper functions directly.

The sample is available for via the link above. It is also linked on the Host Integration Server Developer Center page.

Host Integration Server 2010 Cumulative Update 3 (CU3) is available

$
0
0

The Host Integration Server Product Team has just released the third Cumulative Update (CU) for HIS 2010. The cumulative update model is used to package and release product fixes on a more consistent schedule.

HIS 2010 CU3 includes fixes for HIS 2010 that were fixed after the release of HIS 2010, including all the fixes that are in HIS 2010 CU1 and CU2. Details on the included fixes can be found in the following Knowledge Base article:

2654652    Cumulative update package 3 for Host Integration Server 2010
http://support.microsoft.com/default.aspx?scid=kb;EN-US;2654652

You can download HIS 2010 CU3 via the View and request hotfix downloads link in the KB article. You would need to download the CU3 package that matches the HIS 2010 version (x86 or x64) that you have installed.

Thanks…

Host Integration Server Information on MSDN

$
0
0

I wanted to let everyone know that we have a Host Integration Server Developer Center page that contains links to various HIS resources. We are trying to make sure that we update the site with information about new HIS updates and resources as they become available. For example, you will find links to the HIS Cumulative Update (CU) packages, blogs, white papers, and documentation.

If you have suggestions about other things that should be included, please let me know.

Thanks…

Host Integration Server 2006 has entered Extended Support

$
0
0

For those of you still using HIS 2006 in your environments, please be aware that HIS 2006 entered the Extended Support phase of its lifecycle this past Tuesday (April 10, 2012).

When a product is in Extended Support, it means that Microsoft Support still provides support, but new hotfixes will no longer be created for any new issues that are identified as bugs. In order to get new hotfixes, you would need to purchase an extended support contract.

The HIS 2006 lifecycle is available at http://support.microsoft.com/lifecycle/?p1=11973.

If you are using HIS 2006 and have not starting migration planning, now would be a good time to start.

Thanks…

Viewing all 66 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>