Problem Note 40249: WEBA_SET_REFERRER_TYPE_CD should ensure there are no duplicates in the DOMAIN_DIM table
Code added to WEBA_SET_REFERRER_TYPE_CD will ensure there are no duplicates in the DOMAIN_DIM table during a migration from SAS® Web Analytics 5.3.1 to 5.3.3. The hot fix associated with
Problem Note 40247
modifies the ucmacros\weba_set_referrer_type_cd.sas macro to remove the duplicates.
As an alternative to applying the hot fix, this macro can be modified manually. Add the following code to the
ucmacros\weba_set_referrer_type_cd.sas macro:
/* Due to MD5 5.3.1/5.3.3 conversion issues, it is possible in some cases */
/* for duplicate natural keys to be created. They must be eliminated, */
/* or errors will occur on the format creation. */
proc sort data=&all_domains(rename=domain_nm=start keep=domain_nm)
out=work.dedup nodupkeys;
by start;
run;
This code should be added immediately before the following statements:
data work.cntlin;
retain fmtname '$REFERRER_TYPE_CD_FMT';
set work.dedup end=end;
label='I'; /* Internal */
output;
if end then
do;
hlo='O';
start=' ';
label='E'; /* External */
output;
end;
run;
Operating System and Release Information
SAS System | SAS Web Analytics | Microsoft® Windows® for x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Microsoft Windows Server 2003 Datacenter Edition | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Microsoft Windows Server 2003 Enterprise Edition | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Microsoft Windows Server 2003 Standard Edition | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Microsoft Windows Server 2003 for x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Microsoft Windows Server 2008 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Microsoft Windows Server 2008 for x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Microsoft Windows XP Professional | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Enterprise 32 bit | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Enterprise x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Home Premium 32 bit | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Home Premium x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Professional 32 bit | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Professional x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Ultimate 32 bit | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows 7 Ultimate x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows Vista | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Windows Vista for x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
64-bit Enabled AIX | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
64-bit Enabled Solaris | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
HP-UX IPF | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Linux for x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
Solaris for x64 | 5.3_M3 | 5.3_M3 | 9.2 TS2M3 | 9.2 TS2M3 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | medium |
Date Modified: | 2010-07-08 18:28:17 |
Date Created: | 2010-07-07 10:19:31 |