Prep 2007 Upgrade - SQL to Get Clients Started

<u><b>Prep for SAP 2007 - Some SQL to Get the Clients Started</b></u>
(NOTE: Marilyn Pratt suggested I post this here since it is so general.  If there is a better place, please let me know and I can move/post it there).
I have just started working with a customer doing international business; pre-payments and block payments are 90% of their business.  They have not reconciled items for almost three years in SAP B1.  In my discussions with them about SAP 2007, they wanted to be a bit more proactive in dealing with reconciliations before SAP 2007 arrived.  In order to get them moving quickly, I wrote the following versions of SQL which identifies business partners with a zero account balance and open documents/journal entries (what easier way is there to start?).  If you find yourself in a similar situation, you might want to utilize this SQL to gently guide your customers into looking at unreconciled/unmatched situations. The SQL is simple, but direct.  It might be written a lot better, but the whole purpose was to get the customer to START doing something.  Two side benefits; one, the results of the SQL provide 100% success in what they are doing and they gain some confidence in a new process, and two, the customer can run this on a daily basis to keep things “clean”.  Once they are done with this easy-to-do phase, I will put something together that might help with those items needing more research. 
Might have made a mistake while re-typing the SQL for this post, so check them out and leave a note if I typed something wrong, OK?  It’s not much, but hope these help those who might be in a similar situation!
(note – the two dashed items are just info only and not do not need to be put in the actual SQL you write).
<u><b>--SQL to Identify Business Partners with Zero Balance and Open Documents</b></u>
SELECT
--T10 = Business Partner Master Data Information
T10.CardCode AS ‘BP Code’,
T10.Cardname AS ‘BP Name’,
T10.Balance AS ‘BP Account Balance’,
--T20 = Invoice Header Information
Sum(T20.DocTotal) AS ‘Total Open Invoices’,
Sum(T20.PaidToDate) AS ‘Total Paid To Date’,
--T30 = Credit Memo Header Information
Sum(T30.DocTotal) AS ‘Total Cred Memo Info’
FROM OCRD T10 INNER JOIN OINV T20
ON T10.CardCode = T20.Card Code
AND T20.DocStatus = 'O'
--NOTE:  use OINV for customer BPs, substitute ORPC for OINV to get a report on BPs that are vendors
LEFT OUTER JOIN ORIN T30
ON T10.CardCode = T30.CardCode
AND T30.DocStatus = 'O'
WHERE T10.Balance = 0
GROUP BY T10.CardCode, T10.CardName, T10.Balance
ORDER BY T10.CardCode, T10.CardName
--END OF SQL to Identify Business Partners with Zero Balance and Open Documents
Another version that could help.
<u><b>--SQL to Identify Business Partners with Zero Balance and Unmatched Journal Entries</b></u>
--T10 = Journal Entry Header Information
T10.TransID,
--T20 = Journal Entry Detail Information
T20.IntrnMatch AS ‘Intern Match ID’,
T20.ShortName AS ‘JE BP Code’,
Sum(T20.Debit) AS ‘JE Debit Total’,
Sum(T20.Credit) AS ‘JE Credit Total’,
--T30 = Business Partner Master Data Information
T30.CardCode AS ‘BP Num’,
T30.Balance AS ‘BP Account Balance’
FROM OJDT T10 INNER JOIN JDT1 T20
ON T10.TransID = T20.TransID
LEFT OUTER JOIN OCRD T30
ON T20.ShortName = T30.CardCode
AND T30.Balance = 0
WHERE T20.IntrnMatch = ‘ ‘
--NOTE:  that is a single quote mark, space, and another single quote mark for IntrnMatch
GROUP BY T20.ShortName, T20.IntrnMatch, T30.CardCode, T30.Balance
ORDER BY T20.ShortName
--END OF SQL to Identify Business Partners with Zero Balance and Unmatched JEs.

Hi,
What is the native vlan you are using ? If it is vlan number 2, then there is known bug CSCui73764
Symptom:
Flex mode APs 1130 & 1240 series, will not pass traffic, e.g. DHCP, ARP. on some wlans.
Conditions:
1) Flex connect local switching
2) AP 1240 or 1130
3) any version before 7.4.121.7
4) native vlan x, non working vlan y.
5) user unable to get ip address.
Workaround:
change the native vlan to an unexpectedly high number, so no wlan will ever get mapped to a bridge group number that high.
Further Problem Description:
telnet to the flex ap. here is an example. vlan 3 is the native vlan on the flex ap, it is correctly mapped to bridge group 1. now the wlan which will not work is the one, which is mapped to vlan2. see carefully below, the vlan 2 is mapped to bridge group 3. this is the instance where we hit the bug. so it can be any wlan-vlan-native vlan combination. 
HTH
Rasika
**** Pls rate all useful responses ****

Similar Messages

  • Upgrading SQL and 2007 question

    I am upgrading a client from SQL 2000 to 2008 and also upgrading them from SBO 2005 to 2007.  I assume that I will need to upgrade SQL first and then SBO? 
    Is this correct?
    Thanks, Jeff

    Hi All,
    To clarify. There is no need to uninstall anything related to SAP Business One when performing an upgrade.
    Follow the steps in the upgrade guide and all the components will be upgraded automatically
    Server tools,
    SBO-Common
    B1 client,
    B1 database
    Please also check with Microsoft any issues you might face when upgrading MS SQL 2000 to 2008, I have not heard of any though.
    As always, ensure you have full backups of all databases including SBO-Common and that you test fully in a demo environment first. Also Note 1000846 is quiet useful.
    Regards,
    Paul

  • Having issues with getting SQL Server Express to start services and run.

    Good afternoon everyone,
    I have been working on a 2012 R2 server getting ready to move databases to new hardware.  I had SQL Server Express 2008 R2 running on this server with no issues.  I was handed another software package that ran SQL Express 2012 and had to for compatibility
    reasons.  I have had multiple versions run on Server 2012 before with no issues.  This time, not so lucky.  When the installer from the updated package put on SQL Express 2012 it completed with errors ( error log posted at the end of post) and
    would not allow me to run software.  I then tried the db that I had installed on 2008 R2 and it also gave the  same error as the 2012 version.  IN basic terms the required services attempted to start and shut back down again.  I have received
    Error 1068 about database handles and error %%945.   I know this db has plenty of space and the permissions were added for the Admin account to access both db's.  I then uninstalled both versions and tried again, with the same errors listed when
    I tried to start the services.     I am thinking that a clean install would fix the issue however I am not certain what files/folders/reg entries need to be deleted or modified.  I have researched all the errors I can find, however I am very
    new with SQL anything so I know I am missing something.   I also do not have an "E:" drive on this server (not sure why it is going there). Input would be very welcome as I am not certain where to go from here. 
    Thanks,
    Matt
    Error Log follows, server and domain names have been blacked out with ****.
    2015-04-15 11:57:55.16 Server      Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64) 
    Dec 28 2012 20:23:12 
    Copyright (c) Microsoft Corporation
    Express Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    2015-04-15 11:57:55.16 Server      (c) Microsoft Corporation.
    2015-04-15 11:57:55.16 Server      All rights reserved.
    2015-04-15 11:57:55.16 Server      Server process ID is 4104.
    2015-04-15 11:57:55.16 Server      System Manufacturer: 'HP', System Model: 'ProLiant ML350p Gen8'.
    2015-04-15 11:57:55.16 Server      Authentication mode is WINDOWS-ONLY.
    2015-04-15 11:57:55.16 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\Log\ERRORLOG'.
    2015-04-15 11:57:55.17 Server      The service account is 'NT AUTHORITY\LOCAL SERVICE'. This is an informational message; no user action is required.
    2015-04-15 11:57:55.17 Server      Registry startup parameters: 
    -d C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\master.mdf
    -e C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\Log\ERRORLOG
    -l C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\mastlog.ldf
    2015-04-15 11:57:55.17 Server      Command Line Startup Parameters:
    -s "SQLEXPRESS"
    2015-04-15 11:57:55.48 Server      SQL Server detected 1 sockets with 6 cores per socket and 12 logical processors per socket, 12 total logical processors; using 8 logical processors based on SQL Server licensing. This is an informational message;
    no user action is required.
    2015-04-15 11:57:55.48 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2015-04-15 11:57:55.48 Server      Detected 8157 MB of RAM. This is an informational message; no user action is required.
    2015-04-15 11:57:55.48 Server      Using conventional memory in the memory manager.
    2015-04-15 11:57:55.68 Server      This instance of SQL Server last reported using a process ID of 7840 at 4/15/2015 11:57:47 AM (local) 4/15/2015 3:57:47 PM (UTC). This is an informational message only; no user action is required.
    2015-04-15 11:57:55.68 Server      Node configuration: node 0: CPU mask: 0x00000000000000ff:0 Active CPU mask: 0x00000000000000ff:0. This message provides a description of the NUMA configuration for this computer. This is an informational message
    only. No user action is required.
    2015-04-15 11:57:55.69 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2015-04-15 11:57:55.72 Server      Software Usage Metrics is disabled.
    2015-04-15 11:57:55.73 spid5s      Starting up database 'master'.
    2015-04-15 11:57:55.79 spid5s      20 transactions rolled forward in database 'master' (1:0). This is an informational message only. No user action is required.
    2015-04-15 11:57:55.79 spid5s      0 transactions rolled back in database 'master' (1:0). This is an informational message only. No user action is required.
    2015-04-15 11:57:55.80 Server      CLR version v4.0.30319 loaded.
    2015-04-15 11:57:55.86 spid5s      Service Master Key could not be decrypted using one of its encryptions. See sys.key_encryptions for details.
    2015-04-15 11:57:55.89 Server      Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
    2015-04-15 11:57:55.91 spid5s      SQL Server Audit is starting the audits. This is an informational message. No user action is required.
    2015-04-15 11:57:55.91 spid5s      SQL Server Audit has started the audits. This is an informational message. No user action is required.
    2015-04-15 11:57:55.94 spid5s      SQL Trace ID 1 was started by login "sa".
    2015-04-15 11:57:55.94 spid5s      Server name is '********\SQLEXPRESS'. This is an informational message only. No user action is required.
    2015-04-15 11:57:55.96 spid5s      Failed to verify Authenticode signature on DLL 'C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\Binn\ftimport.dll'.
    2015-04-15 11:57:55.96 spid5s      Starting up database 'msdb'.
    2015-04-15 11:57:55.96 spid9s      Starting up database 'mssqlsystemresource'.
    2015-04-15 11:57:55.96 spid5s      Error: 17204, Severity: 16, State: 1.
    2015-04-15 11:57:55.96 spid5s      FCB::Open failed: Could not open file e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\MSDBData.mdf for file number 1.  OS error: 3(The system cannot find the path specified.).
    2015-04-15 11:57:55.96 spid5s      Error: 5120, Severity: 16, State: 101.
    2015-04-15 11:57:55.96 spid5s      Unable to open the physical file "e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\MSDBData.mdf". Operating system error 3: "3(The system cannot find the path specified.)".
    2015-04-15 11:57:55.96 spid5s      Error: 17207, Severity: 16, State: 1.
    2015-04-15 11:57:55.96 spid5s      FileMgr::StartLogFiles: Operating system error 2(The system cannot find the file specified.) occurred while creating or opening file 'e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\MSDBLog.ldf'.
    Diagnose and correct the operating system error, and retry the operation.
    2015-04-15 11:57:55.96 spid5s      File activation failure. The physical file name "e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\MSDBLog.ldf" may be incorrect.
    2015-04-15 11:57:55.99 spid9s      The resource database build version is 11.00.3000. This is an informational message only. No user action is required.
    2015-04-15 11:57:56.02 spid12s     A self-generated certificate was successfully loaded for encryption.
    2015-04-15 11:57:56.03 spid12s     Server is listening on [ 'any' <ipv6> 53345].
    2015-04-15 11:57:56.03 spid12s     Server is listening on [ 'any' <ipv4> 53345].
    2015-04-15 11:57:56.03 spid12s     Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\SQLEXPRESS ].
    2015-04-15 11:57:56.03 spid12s     Server named pipe provider is ready to accept connection on [ \\.\pipe\MSSQL$SQLEXPRESS\sql\query ].
    2015-04-15 11:57:56.04 spid12s     Dedicated administrator connection support was not started because it is disabled on this edition of SQL Server. If you want to use a dedicated administrator connection, restart SQL Server using the trace flag 7806.
    This is an informational message only. No user action is required.
    2015-04-15 11:57:56.04 Server      SQL Server is attempting to register a Service Principal Name (SPN) for the SQL Server service. Kerberos authentication will not be possible until a SPN is registered for the SQL Server service. This is an informational
    message. No user action is required.
    2015-04-15 11:57:56.04 Server      The SQL Server Network Interface library could not register the Service Principal Name (SPN) [ MSSQLSvc/********.****.local:SQLEXPRESS ] for the SQL Server service. Windows return code: 0xffffffff, state: 53.
    Failure to register a SPN might cause integrated authentication to use NTLM instead of Kerberos. This is an informational message. Further action is only required if Kerberos authentication is required by authentication policies and if the SPN has not been
    manually registered.
    2015-04-15 11:57:56.04 Server      The SQL Server Network Interface library could not register the Service Principal Name (SPN) [ MSSQLSvc/********.****.local:53345 ] for the SQL Server service. Windows return code: 0xffffffff, state: 53. Failure
    to register a SPN might cause integrated authentication to use NTLM instead of Kerberos. This is an informational message. Further action is only required if Kerberos authentication is required by authentication policies and if the SPN has not been manually
    registered.
    2015-04-15 11:57:56.09 spid9s      Starting up database 'model'.
    2015-04-15 11:57:56.10 spid9s      Error: 17204, Severity: 16, State: 1.
    2015-04-15 11:57:56.10 spid9s      FCB::Open failed: Could not open file e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\model.mdf for file number 1.  OS error: 3(The system cannot find the path specified.).
    2015-04-15 11:57:56.10 spid9s      Error: 5120, Severity: 16, State: 101.
    2015-04-15 11:57:56.10 spid9s      Unable to open the physical file "e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\model.mdf". Operating system error 3: "3(The system cannot find the path specified.)".
    2015-04-15 11:57:56.10 spid9s      Error: 17207, Severity: 16, State: 1.
    2015-04-15 11:57:56.10 spid9s      FileMgr::StartLogFiles: Operating system error 2(The system cannot find the file specified.) occurred while creating or opening file 'e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\modellog.ldf'.
    Diagnose and correct the operating system error, and retry the operation.
    2015-04-15 11:57:56.10 spid9s      File activation failure. The physical file name "e:\sql11_main_t.obj.x86release\sql\mkmastr\databases\objfre\i386\modellog.ldf" may be incorrect.
    2015-04-15 11:57:56.10 spid9s      Error: 945, Severity: 14, State: 2.
    2015-04-15 11:57:56.10 spid9s      Database 'model' cannot be opened due to inaccessible files or insufficient memory or disk space.  See the SQL Server errorlog for details.
    2015-04-15 11:57:56.10 spid9s      SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
    

    Hi HMLunger,
    Did you install the SQL Server instance successfully? If not, please help to post the summary and detail logs for analysis. By default, the logs can be found in: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log.
    However, if you fail to start SQL Server Express service after successfully installing SQL Server,
    you might have to change the paths of the files by running the following scripts from the command prompt. For more details, please review this similar
    thread.
    NET START MSSQL$SQLEXPRESS /f /T3608
    SQLCMD -S .\SQLEXPRESS
    ALTER DATABASE model MODIFY FILE (NAME = logical_name , FILENAME = 'new_path\os_file_name');
    ALTER DATABASE model MODIFY FILE (NAME = logical_name , FILENAME = 'new_path\os_file_name');
    go
    exit;
    ALTER DATABASE msdb MODIFY FILE (NAME = logical_name , FILENAME = 'new_path\os_file_name');
    ALTER DATABASE msdb MODIFY FILE (NAME = logical_name , FILENAME = 'new_path\os_file_name');
    NET STOP MSSQL$SQLEXPRESS
    In addition, you can follow the steps in this KB article to uninstall SQL Server.
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • I just upgraded to the New OS on my Mac Book Pro and now my trackpad does not zoom in or out.  I looked at system settings on trackpad and it is set, but does not work How do I get it started?

    I just upgraded to the New OS on my Mac Book Pro and now my trackpad does not zoom in or out.  I looked at system settings on trackpad and it is set, but does not work How do I get it started?

    This is really unfortunate. I'm sorry that nothing works. I was going to mention holding down the power button and doing a force shutdown but you already did that. You might need to take it into the Apple store. I don't know if booting into safe mode would help. You would have to turn off the machine again, hit the start button and hold down the shift key after you hear the tone, but normally you would let go of the shift key when you see the apple logo and spining wheel. Maybe by holding down the shift key after you here the tone will cause the screen to come back on? The other option is to start up from the 'install disk' if your machine came with one. You would insert the disk, then shut down the computer, and hold down the C key right after hitting the start button.
    Here's the link for the safeboot
    http://support.apple.com/kb/HT1564?viewlocale=nl_nl

  • Post Upgrade SQL Performance Issue

    Hello,
    I Just Upgraded/Migrated my database from 11.1.0.6 SE to 11.2.0.3 EE. I did this with datapump export/import out of the 11.1.0.6 and into a new 11.2.0.3 database. Both the old and the new database are on the same Linux server. The new database has 2GB more RAM assigned to its SGA then the old one. Both DB are using AMM.
    The strange part is I have a SQL statement that completes in 1 second in the Old DB and takes 30 seconds in the new one. I even moved the SQL Plan from the Old DB into the New DB so they are using the same plan.
    To sum up the issue. I have one SQL statement using the same SQL Plan running at dramatically different speeds on two different databases on the same server. The databases are 11.1.0.7 SE and 11.2.0.3 EE.
    Not sure what is going on or how to fix it, Any help would be great!
    I have included Explains and Auto Traces from both NEW and OLD databases.
    NEW DB Explain Plan (Slow)
    Plan hash value: 1046170788
    | Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 94861 | 193M| | 74043 (1)| 00:18:52 |
    | 1 | SORT ORDER BY | | 94861 | 193M| 247M| 74043 (1)| 00:18:52 |
    | 2 | VIEW | PBM_MEMBER_INTAKE_VW | 94861 | 193M| | 31803 (1)| 00:08:07 |
    | 3 | UNION-ALL | | | | | | |
    | 4 | NESTED LOOPS OUTER | | 1889 | 173K| | 455 (1)| 00:00:07 |
    |* 5 | HASH JOIN | | 1889 | 164K| | 454 (1)| 00:00:07 |
    | 6 | TABLE ACCESS FULL| PBM_CODES | 2138 | 21380 | | 8 (0)| 00:00:01 |
    |* 7 | TABLE ACCESS FULL| PBM_MEMBER_INTAKE | 1889 | 145K| | 446 (1)| 00:00:07 |
    |* 8 | INDEX UNIQUE SCAN | ADJ_PK | 1 | 5 | | 1 (0)| 00:00:01 |
    | 9 | NESTED LOOPS | | 92972 | 9987K| | 31347 (1)| 00:08:00 |
    | 10 | NESTED LOOPS OUTER| | 92972 | 8443K| | 31346 (1)| 00:08:00 |
    |* 11 | TABLE ACCESS FULL| PBM_MEMBERS | 92972 | 7989K| | 31344 (1)| 00:08:00 |
    |* 12 | INDEX UNIQUE SCAN| ADJ_PK | 1 | 5 | | 1 (0)| 00:00:01 |
    |* 13 | INDEX UNIQUE SCAN | PBM_EMPLOYER_UK1 | 1 | 17 | | 1 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    5 - access("C"."CODE_ID"="MI"."STATUS_ID")
    7 - filter("MI"."CLAIM_NUMBER" LIKE '%A0000250%' AND "MI"."CLAIM_NUMBER" IS NOT NULL)
    8 - access("MI"."ADJUSTER_ID"="A"."ADJUSTER_ID"(+))
    11 - filter("M"."THEIR_GROUP_ID" LIKE '%A0000250%' AND "M"."THEIR_GROUP_ID" IS NOT NULL)
    12 - access("M"."ADJUSTER_ID"="A"."ADJUSTER_ID"(+))
    13 - access("M"."GROUP_CODE"="E"."GROUP_CODE" AND "M"."EMPLOYER_CODE"="E"."EMPLOYER_CODE")
    Note
    - SQL plan baseline "SYS_SQL_PLAN_a3c20fdcecd98dfe" used for this statement
    OLD DB Explain Plan (Fast)
    Plan hash value: 1046170788
    | Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 95201 | 193M| | 74262 (1)| 00:14:52 |
    | 1 | SORT ORDER BY | | 95201 | 193M| 495M| 74262 (1)| 00:14:52 |
    | 2 | VIEW | PBM_MEMBER_INTAKE_VW | 95201 | 193M| | 31853 (1)| 00:06:23 |
    | 3 | UNION-ALL | | | | | | |
    | 4 | NESTED LOOPS OUTER | | 1943 | 178K| | 486 (1)| 00:00:06 |
    |* 5 | HASH JOIN | | 1943 | 168K| | 486 (1)| 00:00:06 |
    | 6 | TABLE ACCESS FULL| PBM_CODES | 2105 | 21050 | | 7 (0)| 00:00:01 |
    |* 7 | TABLE ACCESS FULL| PBM_MEMBER_INTAKE | 1943 | 149K| | 479 (1)| 00:00:06 |
    |* 8 | INDEX UNIQUE SCAN | ADJ_PK | 1 | 5 | | 0 (0)| 00:00:01 |
    | 9 | NESTED LOOPS | | 93258 | 9M| | 31367 (1)| 00:06:17 |
    | 10 | NESTED LOOPS OUTER| | 93258 | 8469K| | 31358 (1)| 00:06:17 |
    |* 11 | TABLE ACCESS FULL| PBM_MEMBERS | 93258 | 8014K| | 31352 (1)| 00:06:17 |
    |* 12 | INDEX UNIQUE SCAN| ADJ_PK | 1 | 5 | | 0 (0)| 00:00:01 |
    |* 13 | INDEX UNIQUE SCAN | PBM_EMPLOYER_UK1 | 1 | 17 | | 0 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    5 - access("C"."CODE_ID"="MI"."STATUS_ID")
    7 - filter("MI"."CLAIM_NUMBER" LIKE '%A0000250%')
    8 - access("MI"."ADJUSTER_ID"="A"."ADJUSTER_ID"(+))
    11 - filter("M"."THEIR_GROUP_ID" LIKE '%A0000250%')
    12 - access("M"."ADJUSTER_ID"="A"."ADJUSTER_ID"(+))
    13 - access("M"."GROUP_CODE"="E"."GROUP_CODE" AND "M"."EMPLOYER_CODE"="E"."EMPLOYER_CODE")
    NEW DB Auto trace (Slow)
    active txn count during cleanout     0
    blocks decrypted     0
    buffer is not pinned count     664129
    buffer is pinned count     3061793
    bytes received via SQL*Net from client     3339
    bytes sent via SQL*Net to client     28758
    Cached Commit SCN referenced     662366
    calls to get snapshot scn: kcmgss     3
    calls to kcmgas     0
    calls to kcmgcs     8
    CCursor + sql area evicted     0
    cell physical IO interconnect bytes     0
    cleanout - number of ktugct calls     0
    cleanouts only - consistent read gets     0
    cluster key scan block gets     0
    cluster key scans     0
    commit cleanout failures: block lost     0
    commit cleanout failures: callback failure      0
    commit cleanouts     0
    commit cleanouts successfully completed     0
    Commit SCN cached     0
    commit txn count during cleanout     0
    concurrency wait time     0
    consistent changes     0
    consistent gets     985371
    consistent gets - examination     2993
    consistent gets direct     0
    consistent gets from cache     985371
    consistent gets from cache (fastpath)     982093
    CPU used by this session     3551
    CPU used when call started     3551
    CR blocks created     0
    cursor authentications     1
    data blocks consistent reads - undo records applied     0
    db block changes     0
    db block gets     0
    db block gets direct     0
    db block gets from cache     0
    db block gets from cache (fastpath)     0
    DB time     3553
    deferred (CURRENT) block cleanout applications     0
    dirty buffers inspected     0
    Effective IO time     0
    enqueue releases     0
    enqueue requests     0
    execute count     3
    file io wait time     0
    free buffer inspected     0
    free buffer requested     0
    heap block compress     0
    Heap Segment Array Updates     0
    hot buffers moved to head of LRU     0
    HSC Heap Segment Block Changes     0
    immediate (CR) block cleanout applications     0
    immediate (CURRENT) block cleanout applications     0
    IMU Flushes     0
    IMU ktichg flush     0
    IMU Redo allocation size     0
    IMU undo allocation size     0
    index fast full scans (full)     2
    index fetch by key     0
    index scans kdiixs1     12944
    lob reads     0
    LOB table id lookup cache misses     0
    lob writes     0
    lob writes unaligned     0
    logical read bytes from cache     -517775360
    logons cumulative     0
    logons current     0
    messages sent     0
    no buffer to keep pinned count     10
    no work - consistent read gets     982086
    non-idle wait count     6
    non-idle wait time     0
    Number of read IOs issued     0
    opened cursors cumulative     4
    opened cursors current     1
    OS Involuntary context switches     853
    OS Maximum resident set size     0
    OS Page faults     0
    OS Page reclaims     2453
    OS System time used     9
    OS User time used     3549
    OS Voluntary context switches     238
    parse count (failures)     0
    parse count (hard)     0
    parse count (total)     1
    parse time cpu     0
    parse time elapsed     0
    physical read bytes     0
    physical read IO requests     0
    physical read total bytes     0
    physical read total IO requests     0
    physical read total multi block requests     0
    physical reads     0
    physical reads cache     0
    physical reads cache prefetch     0
    physical reads direct     0
    physical reads direct (lob)     0
    physical write bytes     0
    physical write IO requests     0
    physical write total bytes     0
    physical write total IO requests     0
    physical writes     0
    physical writes direct     0
    physical writes direct (lob)     0
    physical writes non checkpoint     0
    pinned buffers inspected     0
    pinned cursors current     0
    process last non-idle time     0
    recursive calls     0
    recursive cpu usage     0
    redo entries     0
    redo size     0
    redo size for direct writes     0
    redo subscn max counts     0
    redo synch time     0
    redo synch time (usec)     0
    redo synch writes     0
    Requests to/from client     3
    rollbacks only - consistent read gets     0
    RowCR - row contention     0
    RowCR attempts     0
    rows fetched via callback     0
    session connect time     0
    session cursor cache count     1
    session cursor cache hits     3
    session logical reads     985371
    session pga memory     131072
    session pga memory max     0
    session uga memory     392928
    session uga memory max     0
    shared hash latch upgrades - no wait     284
    shared hash latch upgrades - wait     0
    sorts (memory)     3
    sorts (rows)     243
    sql area evicted     0
    sql area purged     0
    SQL*Net roundtrips to/from client     4
    switch current to new buffer     0
    table fetch by rowid     1861456
    table fetch continued row     9
    table scan blocks gotten     0
    table scan rows gotten     0
    table scans (short tables)     0
    temp space allocated (bytes)     0
    undo change vector size     0
    user calls     7
    user commits     0
    user I/O wait time     0
    workarea executions - optimal     10
    workarea memory allocated     342
    OLD DB Auto trace (Fast)
    active txn count during cleanout     0
    buffer is not pinned count     4
    buffer is pinned count     101
    bytes received via SQL*Net from client     1322
    bytes sent via SQL*Net to client     9560
    calls to get snapshot scn: kcmgss     15
    calls to kcmgas     0
    calls to kcmgcs     0
    calls to kcmgrs     1
    cleanout - number of ktugct calls     0
    cluster key scan block gets     0
    cluster key scans     0
    commit cleanouts     0
    commit cleanouts successfully completed     0
    concurrency wait time     0
    consistent changes     0
    consistent gets     117149
    consistent gets - examination     56
    consistent gets direct     115301
    consistent gets from cache     1848
    consistent gets from cache (fastpath)     1792
    CPU used by this session     118
    CPU used when call started     119
    cursor authentications     1
    db block changes     0
    db block gets     0
    db block gets from cache     0
    db block gets from cache (fastpath)     0
    DB time     123
    deferred (CURRENT) block cleanout applications     0
    Effective IO time     2012
    enqueue conversions     3
    enqueue releases     2
    enqueue requests     2
    enqueue waits     1
    execute count     2
    free buffer requested     0
    HSC Heap Segment Block Changes     0
    IMU Flushes     0
    IMU ktichg flush     0
    index fast full scans (full)     0
    index fetch by key     101
    index scans kdiixs1     0
    lob writes     0
    lob writes unaligned     0
    logons cumulative     0
    logons current     0
    messages sent     0
    no work - consistent read gets     117080
    Number of read IOs issued     1019
    opened cursors cumulative     3
    opened cursors current     1
    OS Involuntary context switches     54
    OS Maximum resident set size     7868
    OS Page faults     12
    OS Page reclaims     2911
    OS System time used     57
    OS User time used     71
    OS Voluntary context switches     25
    parse count (failures)     0
    parse count (hard)     0
    parse count (total)     3
    parse time cpu     0
    parse time elapsed     0
    physical read bytes     944545792
    physical read IO requests     1019
    physical read total bytes     944545792
    physical read total IO requests     1019
    physical read total multi block requests     905
    physical reads     115301
    physical reads cache     0
    physical reads cache prefetch     0
    physical reads direct     115301
    physical reads prefetch warmup     0
    process last non-idle time     0
    recursive calls     0
    recursive cpu usage     0
    redo entries     0
    redo size     0
    redo synch writes     0
    rows fetched via callback     0
    session connect time     0
    session cursor cache count     1
    session cursor cache hits     2
    session logical reads     117149
    session pga memory     -983040
    session pga memory max     0
    session uga memory     0
    session uga memory max     0
    shared hash latch upgrades - no wait     0
    sorts (memory)     2
    sorts (rows)     157
    sql area purged     0
    SQL*Net roundtrips to/from client     3
    table fetch by rowid     0
    table fetch continued row     0
    table scan blocks gotten     117077
    table scan rows gotten     1972604
    table scans (direct read)     1
    table scans (long tables)     1
    table scans (short tables)     2
    undo change vector size     0
    user calls     5
    user I/O wait time     0
    workarea executions - optimal     4

    Hi Srini,
    Yes the stats on the tables and indexes are current in both DBs. However the NEW DB has "System Stats" in sys.aux_stats$ and the OLD DB does not. The old DB has optimizer_index_caching=0 and optimizer_index_cost_adj=100. The new DB as them at optimizer_index_caching=90 and optimizer_index_cost_adj=25 but should not be using them because of the "System Stats".
    Also I thought none of the SQL Optimize stuff would matter because I forced in my own SQL Plan using SPM.
    Differences in init.ora
    OLD-11     optimizerpush_pred_cost_based = FALSE
    NEW-15     audit_sys_operations = FALSE
         audit_trail = "DB, EXTENDED"
         awr_snapshot_time_offset = 0
    OLD-16     audit_sys_operations = TRUE
         audit_trail = "XML, EXTENDED"
    NEW-22     cell_offload_compaction = "ADAPTIVE"
         cell_offload_decryption = TRUE
         cell_offload_plan_display = "AUTO"
         cell_offload_processing = TRUE
    NEW-28     clonedb = FALSE
    NEW-32     compatible = "11.2.0.0.0"
    OLD-27     compatible = "11.1.0.0.0"
    NEW-37     cursor_bind_capture_destination = "memory+disk"
         cursor_sharing = "FORCE"
    OLD-32     cursor_sharing = "EXACT"
    NEW-50     db_cache_size = 4294967296
         db_domain = "my.com"
    OLD-44     db_cache_size = 0
    NEW-54     db_flash_cache_size = 0
    NEW-58     db_name = "NEWDB"
         db_recovery_file_dest_size = 214748364800
    OLD-50     db_name = "OLDDB"
         db_recovery_file_dest_size = 8438939648
    NEW-63     db_unique_name = "NEWDB"
         db_unrecoverable_scn_tracking = TRUE
         db_writer_processes = 2
    OLD-55     db_unique_name = "OLDDB"
         db_writer_processes = 1
    NEW-68     deferred_segment_creation = TRUE
    NEW-71     dispatchers = "(PROTOCOL=TCP) (SERVICE=NEWDBXDB)"
    OLD-61     dispatchers = "(PROTOCOL=TCP) (SERVICE=OLDDBXDB)"
    NEW-73     dml_locks = 5068
         dst_upgrade_insert_conv = TRUE
    OLD-63     dml_locks = 3652
         drs_start = FALSE
    NEW-80     filesystemio_options = "SETALL"
    OLD-70     filesystemio_options = "none"
    NEW-87     instance_name = "NEWDB"
    OLD-77     instance_name = "OLDDB"
    NEW-94     job_queue_processes = 1000
    OLD-84     job_queue_processes = 100
    NEW-104     log_archive_dest_state_11 = "enable"
         log_archive_dest_state_12 = "enable"
         log_archive_dest_state_13 = "enable"
         log_archive_dest_state_14 = "enable"
         log_archive_dest_state_15 = "enable"
         log_archive_dest_state_16 = "enable"
         log_archive_dest_state_17 = "enable"
         log_archive_dest_state_18 = "enable"
         log_archive_dest_state_19 = "enable"
    NEW-114     log_archive_dest_state_20 = "enable"
         log_archive_dest_state_21 = "enable"
         log_archive_dest_state_22 = "enable"
         log_archive_dest_state_23 = "enable"
         log_archive_dest_state_24 = "enable"
         log_archive_dest_state_25 = "enable"
         log_archive_dest_state_26 = "enable"
         log_archive_dest_state_27 = "enable"
         log_archive_dest_state_28 = "enable"
         log_archive_dest_state_29 = "enable"
    NEW-125     log_archive_dest_state_30 = "enable"
         log_archive_dest_state_31 = "enable"
    NEW-139     log_buffer = 7012352
    OLD-108     log_buffer = 34412032
    OLD-112     max_commit_propagation_delay = 0
    NEW-144     max_enabled_roles = 150
         memory_max_target = 12884901888
         memory_target = 8589934592
         nls_calendar = "GREGORIAN"
    OLD-114     max_enabled_roles = 140
         memory_max_target = 6576668672
         memory_target = 6576668672
    NEW-149     nls_currency = "$"
         nls_date_format = "DD-MON-RR"
         nls_date_language = "AMERICAN"
         nls_dual_currency = "$"
         nls_iso_currency = "AMERICA"
    NEW-157     nls_numeric_characters = ".,"
         nls_sort = "BINARY"
    NEW-160     nls_time_format = "HH.MI.SSXFF AM"
         nls_time_tz_format = "HH.MI.SSXFF AM TZR"
         nls_timestamp_format = "DD-MON-RR HH.MI.SSXFF AM"
         nls_timestamp_tz_format = "DD-MON-RR HH.MI.SSXFF AM TZR"
    NEW-172     optimizer_features_enable = "11.2.0.3"
         optimizer_index_caching = 90
         optimizer_index_cost_adj = 25
    OLD-130     optimizer_features_enable = "11.1.0.6"
         optimizer_index_caching = 0
         optimizer_index_cost_adj = 100
    NEW-184     parallel_degree_limit = "CPU"
         parallel_degree_policy = "MANUAL"
         parallel_execution_message_size = 16384
         parallel_force_local = FALSE
    OLD-142     parallel_execution_message_size = 2152
    NEW-189     parallel_max_servers = 320
    OLD-144     parallel_max_servers = 0
    NEW-192     parallel_min_time_threshold = "AUTO"
    NEW-195     parallel_servers_target = 128
    NEW-197     permit_92_wrap_format = TRUE
    OLD-154     plsql_native_library_subdir_count = 0
    NEW-220     result_cache_max_size = 21495808
    OLD-173     result_cache_max_size = 0
    NEW-230     service_names = "NEWDB, NEWDB.my.com, NEW"
    OLD-183     service_names = "OLDDB, OLD.my.com"
    NEW-233     sessions = 1152
         sga_max_size = 12884901888
    OLD-186     sessions = 830
         sga_max_size = 6576668672
    NEW-238     shared_pool_reserved_size = 35232153
    OLD-191     shared_pool_reserved_size = 53687091
    OLD-199     sql_version = "NATIVE"
    NEW-248     star_transformation_enabled = "TRUE"
    OLD-202     star_transformation_enabled = "FALSE"
    NEW-253     timed_os_statistics = 60
    OLD-207     timed_os_statistics = 5
    NEW-256     transactions = 1267
    OLD-210     transactions = 913
    NEW-262     use_large_pages = "TRUE"

  • Error Upgrading SQL 2012 SP1 to SP2

    Get this error when trying to install KB2958429. 
    Action required:
    Use the following information to resolve the error, and then try the setup process again.
    Feature failure reason:
    An error occurred during the setup process of the feature.
    Error details:
    § Error installing SQL Server Database Engine Services Instance Features
    The User Data directory in the registry is not valid. Verify DefaultData key under the instance hive points to a valid directory.
    Error code: 0x851A0043
    Visit  to get help on troubleshooting.
    Here is the summary.
    Overall summary:
      Final result:                  The patch installer has failed to update the following instance: MSSQLSERVER. To determine the reason for failure, review the log files.
      Exit code (Decimal):           -2061893565
      Start time:                    2014-09-10 23:27:40
      End time:                      2014-09-10 23:30:44
      Requested action:              Patch
    Instance MSSQLSERVER overall summary:
      Final result:                  The patch installer has failed to update the shared features. To determine the reason for failure, review the log files.
      Exit code (Decimal):           -2061893565
      Start time:                    2014-09-10 23:29:38
      End time:                      2014-09-10 23:30:41
      Requested action:              Patch
    Machine Properties:
      Machine name:                  ANTXSQL5
      Machine processor count:       2
      OS version:                    Future Windows Version
      OS service pack:              
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered  Configured
      SQL Server 2012      MSSQLSERVER          MSSQL11.MSSQLSERVER            Database Engine Services                
    1033                 Standard Edition     11.1.3128.0     No         Yes      
      SQL Server 2012                                                         
    Management Tools - Basic                 1033                 Standard Edition    
    11.2.5058.0     No         Yes      
      SQL Server 2012                                                         
    Management Tools - Complete              1033                 Standard Edition     11.2.5058.0    
    No         Yes      
      SQL Server 2012                                                         
    Client Tools SDK                         1033                
    Standard Edition     11.2.5058.0     No         Yes      
    Package properties:
      Description:                   Microsoft SQL Server 2012
      ProductName:                   SQL Server 2012
      Type:                          RTM
      Version:                       11
      SPLevel:                       2
      KBArticle:                     KB2958429
      KBArticleHyperlink:           
      PatchType:                     SP
      AssociatedHotfixBuild:         0
      Platform:                      x64
      PatchLevel:                    11.2.5058.0
      ProductVersion:                11.0.2100.60
      GDRReservedRange:              11.0.5300.0:11.0.5499.0
      PackageName:                   SQLServer2012-KB2958429-x64.exe
      Installation location:         c:\eed85e43821e2e4fc7fd04f2f02561\x64\setup\
    Updated product edition:
      Instance             Edition            
      MSSQLSERVER          Standard           
    User Input Settings:
      ACTION:                        Patch
      ALLINSTANCES:                  false
      CLUSTERPASSIVE:                false
      CONFIGURATIONFILE:            
      ENU:                           true
      HELP:                          false
      IACCEPTSQLSERVERLICENSETERMS:  true
      INDICATEPROGRESS:              false
      INSTANCEID:                    <empty>
      INSTANCENAME:                  <empty>
      QUIET:                         false
      QUIETSIMPLE:                   false
      SQMREPORTING:                  false
      UIMODE:                        Normal
      X86:                           false
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file:               C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140910_232739\SystemConfigurationCheck_Report.htm
    The SystemConfigurationCheck_Report is all ok.

    <?xml version="1.0" encoding="utf-8"?>
    <html>
      <head>
        <title>System Configuration Check Report for Microsoft SQL Server 2012 </title>
      </head>
      <body>
        <p STYLE="font-family: Verdana, Arial, sans-serif; font-size: 14pt;">
          <b>Microsoft SQL Server 2012  - System Configuration Check Report</b>
        </p>
        <p STYLE="font-family: Verdana, Arial, sans-serif; font-size: 10pt;">
          <b>Computer Name(s): </b>ANTXSQL5 <br /><b>Report Date/Time: </b>9/10/2014 11:28 PM<br /><b>Saved to Directory: </b><a href="C:\Program Files\Microsoft SQL Server\110\Setup
    Bootstrap\Log\20140910_232739\SystemConfigurationCheck_Report.htm">C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140910_232739\SystemConfigurationCheck_Report.htm</a></p>
        <table border="1" cellpadding="7" cellspacing="0" STYLE="font-family: Verdana, Arial, sans-serif; font-size: 9pt;">
          <tr style="background-color:Silver">
            <th colspan="2" align="center">Rule Name</th>
            <th align="center">Rule Description</th>
            <th align="center">Result</th>
            <th align="center">Message/Corrective Action</th>
          </tr>
          <tr style="background-color:Aqua">
            <td colspan="5">
              <b>PatchGlobalRules:
                        SQL Server 2012 Setup configuration checks for rules group 'PatchGlobalRules'</b>
            </td>
          </tr>
          <tr valign="top">
            <td>
              <img src="resources\ProgressSkip.ico" />
            </td>
            <td>Engine_ResourceDLLUpdateRestartCheck</td>
            <td>Checks whether shared resource DLLs will be updated, causing restarts for clustered SQL Server instances active on this node.</td>
            <td>Not applicable</td>
            <td>This rule does not apply to your system configuration.</td>
          </tr>
          <tr valign="top" style="background-color:LightYellow">
            <td>
              <img src="resources\ProgressSuccess.ico" />
            </td>
            <td>AclPermissionsFacet</td>
            <td>Checks if the SQL Server registry keys are consistent.</td>
            <td>Passed</td>
            <td>SQL Server registry keys are consistent and can support SQL Server installation or upgrade.</td>
          </tr>
          <tr valign="top">
            <td>
              <img src="resources\ProgressSuccess.ico" />
            </td>
            <td>Cluster_IsLocalNodeGroupOwner</td>
            <td>Checks if the local computer is an owner of an online cluster group for a failover cluster instance that contains the SQL Server service, Analysis Services service or a generic service.</td>
            <td>Passed</td>
            <td>The local computer is not an owner of an online cluster group for a failover cluster instance that contains the SQL Server service, Analysis Services service or a generic service. The SQL Server instances
    do not need to be taken offline.</td>
          </tr>
          <tr valign="top" style="background-color:LightYellow">
            <td>
              <img src="resources\ProgressSuccess.ico" />
            </td>
            <td>Cluster_IsOnlineIfClustered</td>
            <td>Verifies that the computer is not clustered or that the computer is clustered and the cluster service is online.</td>
            <td>Passed</td>
            <td>The computer is either not clustered or the cluster is up and online.</td>
          </tr>
          <tr valign="top">
            <td>
              <img src="resources\ProgressSuccess.ico" />
            </td>
            <td>RebootRequiredCheck</td>
            <td>Checks if a pending computer restart is required. A pending restart can cause Setup to fail.</td>
            <td>Passed</td>
            <td>The computer does not require a restart.</td>
          </tr>
          <tr valign="top" style="background-color:LightYellow">
            <td>
              <img src="resources\ProgressSuccess.ico" />
            </td>
            <td>ThreadHasAdminPrivilegeCheck</td>
            <td>Checks whether the account running SQL Server Setup has administrator rights on the computer.</td>
            <td>Passed</td>
            <td>The account running SQL Server Setup has administator rights on the computer.</td>
          </tr>
          <tr valign="top">
            <td>
              <img src="resources\ProgressSuccess.ico" />
            </td>
            <td>WmiServiceStateCheck</td>
            <td>Checks whether the WMI service is started and running on the computer.</td>
            <td>Passed</td>
            <td>The Windows Management Instrumentation (WMI) service is running.</td>
          </tr>
        </table>
        <p STYLE="font-family: Verdana, Arial, sans-serif; font-size: 10pt;">
          <b>Rules Documentation: </b>
          <a href
          <br />
          <b>Community: </b>
          <a href
          <br />
          <b>Setup Help File: </b>
          <a href="
        </p>
      </body>
      <xml id="xmlDataIsland">
        <RunRuleResults>
      <Header reportDate="9/10/2014" reportTime="11:28 PM" savedToDirectory="C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140910_232739\SystemConfigurationCheck_Report.htm">
        <Machines>
          <Machine value="ANTXSQL5" />
        </Machines>
      </Header>
      <group groupName="PatchGlobalRules" groupDescription="SQL Server 2012 Setup configuration checks for rules group 'PatchGlobalRules'">
        <RunRuleResult ruleName="ThreadHasAdminPrivilegeCheck" machineName="ANTXSQL5" description="Checks whether the account running SQL Server Setup has administrator rights on the computer." result="Passed"
    message="The account running SQL Server Setup has administator rights on the computer." imagePath="resources\ProgressSuccess.ico" />
        <RunRuleResult ruleName="RebootRequiredCheck" machineName="ANTXSQL5" description="Checks if a pending computer restart is required. A pending restart can cause Setup to fail." result="Passed" message="The
    computer does not require a restart." imagePath="resources\ProgressSuccess.ico" />
        <RunRuleResult ruleName="WmiServiceStateCheck" machineName="ANTXSQL5" description="Checks whether the WMI service is started and running on the computer." result="Passed" message="The Windows
    Management Instrumentation (WMI) service is running." imagePath="resources\ProgressSuccess.ico" />
        <RunRuleResult ruleName="AclPermissionsFacet" machineName="ANTXSQL5" description="Checks if the SQL Server registry keys are consistent." result="Passed" message="SQL Server registry keys are
    consistent and can support SQL Server installation or upgrade." imagePath="resources\ProgressSuccess.ico" />
        <RunRuleResult ruleName="Cluster_IsOnlineIfClustered" machineName="ANTXSQL5" description="Verifies that the computer is not clustered or that the computer is clustered and the cluster service is online." result="Passed"
    message="The computer is either not clustered or the cluster is up and online." imagePath="resources\ProgressSuccess.ico" />
        <RunRuleResult ruleName="Cluster_IsLocalNodeGroupOwner" machineName="ANTXSQL5" description="Checks if the local computer is an owner of an online cluster group for a failover cluster instance that contains the
    SQL Server service, Analysis Services service or a generic service." result="Passed" message="The local computer is not an owner of an online cluster group for a failover cluster instance that contains the SQL Server service, Analysis Services
    service or a generic service. The SQL Server instances do not need to be taken offline." imagePath="resources\ProgressSuccess.ico" />
        <RunRuleResult ruleName="Engine_ResourceDLLUpdateRestartCheck" machineName="ANTXSQL5" description="Checks whether shared resource DLLs will be updated, causing restarts for clustered SQL Server instances active
    on this node." result="Not applicable" message="This rule does not apply to your system configuration." imagePath="resources\ProgressSkip.ico" />
      </group>
      <Resources rulesDocumentation="
    </RunRuleResults>
      </xml>
    </html>

  • *** [23000][2627][Microsoft][SQL Server Native Client 11.0][SQL Server]Violation of UNIQUE KEY constraint 'ClientPushMachine_G_AK'. Cannot insert duplicate key in object 'dbo.ClientPushMachine_G'. The duplicate key value is (16777412). : sp_CP_CheckNewAss

    *** [23000][2627][Microsoft][SQL Server Native Client 11.0][SQL Server]Violation of UNIQUE KEY constraint 'ClientPushMachine_G_AK'. Cannot insert duplicate key in object 'dbo.ClientPushMachine_G'. The duplicate key value is (16777412). : sp_CP_CheckNewAssignedMachine
    CCCRT::RunSQLStoredProc - Failed to execute SQL cmd exec [sp_CP_CheckNewAssignedMachine] N'xxx', 1
    CCRQueueRequest::GetRequestFromQueue - Failed to execute SQL cmd sp_CP_CheckNewAssignedMachine
    I get the above issue and the one below at a client site; the error started with the error below then changed to the one reported above and back to the one below. Everything is working as it should but the issues
    started when one of the admins at the data-centre incorrectly applied a gpo which affected a number of service accounts (sccm inclusive) and they expired....hence reporting in sccm got broke as well as this error in the ccm.log file appeared.
    Remote client install still works but I believe this error affects new client discovered by sccm, so in other words devices discovered by sccm do not get the client installed automatically....but if all access and permissions are in place...pushing out the
    client to the new discovered system works, it just not done automatically, which kinda defeats one the reasons for using sccm.
    I have searched the breadth of the tinternet and I can only find two technet reference to the same error  - one says to edit the stored procedure on the sql server which I don't think should be done... Like Jason said and I concur....its bad joo joos.
    The second suggestion, said you should select all the options in the Client Push Installation properties, I have tried this but hasn't solved the problem.
    I am planning to upgrade the site to the R2 CU3 before the end of the year but I would like to resolve this error before the upgrade.
    The site is currently sccm 2012 sp1 
    Any idea?> Resolution? sil vous plait!
    Merci

    Hi ,
    Please back up the database of the SCCM site. Then run the following query against the Site DB and see how it goes.
    DELETE FROM System_SMS_Resident_ARR
    WHERE ItemKey IN (
    SELECT ItemKey FROM vSystem_SMS_Resident_ARR
    GROUP BY ItemKey
    HAVING COUNT(ItemKey) > 1
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Sql server service wont start after disabling TLS 1.0 and SSL 3.0 on windows

    We have been hardening our servers for some time now and recently we disabled SSL 3.0 because of the poodle attack. When I did this on one of our test servers SQL Server failed to start up after the restart.
    I have been able to reproduce this on Windows Server 2012 and Windows 7 by disabling TLS 1.0 and SSL 3.0 through the registry. I am using SQL Server 2012 on the server machine. On my windows 7 machine sql server 2012 and sql server 2005 will not start with
    those disabled.
    These are the event log errors I get: 
    Application Logs: 
    (28/10/2014 8:38:54 AM) SQL Server could not spawn FRunCM thread. Check the SQL Server error log and the Windows event logs for information about possible related problems. 
    (28/10/2014 8:38:54 AM) Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log. 
    (28/10/2014 8:38:54 AM) TDSSNIClient initialization failed with error 0x80090331, status code 0x1. 
    (28/10/2014 8:38:54 AM) TDSSNIClient initialization failed with error 0x80090331, status code 0x80. 
    System Logs: 
    (28/10/2014 8:38:54 AM) The SQL Server (MSSQLSERVER) service terminated with service-specific error %%-2146893007. 
    (28/10/2014 8:38:54 AM) A fatal error occurred while creating an SSL server credential. The internal error state is 10013. 
    Done anyone know have we can keep SSL 3.0 and TLS 1.0 disabled and get SQLServer server to start?

    Hi Don,
    I already have TLS 1.0 Disabled to prevent the BEAST exploit. So the values I have for:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 
    1.0\Server
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 
    1.0\Client
    Both have enabled set to ("Enabled"=dword:00000000).
    If change both of these back to ("Enabled"=dword:00000001)
    to enable TLS 1.0, and restart then SQLServer is able to start again. But we are now vulnerable to the BEAST attack once again.
    If I keep server enabled and disable the client or vice versa and restart. Then SQLServer starts but I
    am unable to connect to it. When I check the Event logs I get the same errors as my original past.
    With your last post, do you mean to backup SCHANNEL and delete it so it gets recreated? If that is the case it will probably work because if I re enable SSL 3.0 or TLS 1.0 from here it fix's the issue,  but I then I won't have the exploits patched and
    we need this for some of our customers.
    This is my SCHANNEL Export:
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Client]
    "DisabledByDefault"=dword:00000001
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Client]
    "DisabledByDefault"=dword:00000001
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server]
    "Enabled"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client]
    "Enabled"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server]
    "Enabled"=dword:00000000

  • 2007 Upgrade Error Company DB not consistent

    Hi there,
    I am currently using SAP b1 2005 server and client
    im using Sql server 2005 for for database
    while upgrading the system from 2005 to 2007
    every thing(b1 server, client,company database) upgraded succesfully
    but while loging into company it is showing error
    "The company DB is not consistent, Check the SAP Business One log file for more information [Message 131-219]"
    Thank you for your intrest in reading,
    if you encountered similar problem or you know the solution please tell the solution
    also plz tel where can i find solution for this kind of technical issues...
    Thanks & Regards
    Radhakrishnan
    in the log file the error is like the following
    Failed to read threshold from file - ReadThresholdFromFile     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2180
    30/04/2008  20:27:25:452211        Upgrade            Note           Threashold for IRU is 0.050000     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2180
    30/04/2008  20:28:16:635453        Upgrade            Error          FromVersion=680318     ToVersion=860029     UPG_DoObjectUpgradeInt 2, error in object index=276, object name=Japanese Local Era, object ID=275
    STACK:
    Frame id=00: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02DF9710
    Frame id=01: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BCC676
    Frame id=02: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BCB392
    Frame id=03: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BCB30D
    Frame id=04: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02BC9344
    Frame id=05: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x0257D254
    Frame id=06: "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"; base=0x00400000, offset=0x02C3EEB1
    Frame id=07: "C:\WINDOWS\system32\kernel32.dll"; base=0x7C800000, offset=0x7C80B50B
         C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2180
    30/04/2008  20:25:09:463527        Upgrade            NoteLogAlways     FromVersion=680318     ToVersion=860029     Ending the company upgrade     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=2828     TID=2904

    Radhakrishnan,
    I ran into a similar problem recently while attempting an upgrade.  I didn't find a solution to my specific problem but, I was wondering if you had run the pre-upgrade query.  There is a SAP note
    1000846 that refers to upgrade issues and the pre-upgrade query I would run this if you haven't already and see if it returns any results.
    Also: here is a link to the query directly
    [http://service.sap.com/~sapidb/012006153200000918392007E/UpgradeCheckScript_25_2004A_V.txt]
    hope this helps,
    Lucas

  • Within SQL*Plus, get error code of host command

    Hello everyone,
    I am currently writing an SQL*Plus (Oracle 10g) that has a big logic and somewhere in the middle, I have to call a host command, which is an C++ function.
    I call it using
    SQL> HOST cd
    SQL> HOST cd bins
    SQL> HOST ./my_procedureBut, I need to get the return code of my procedure to see if it finished correctly?
    I checked [the manual|http://download.oracle.com/docs/cd/B19306_01/server.102/b14357/ch4.htm#sthref883] but they don't say anything about return codes.
    When I try:
    SQL> host echo $?
    0It always returns 0, even if I SIGTERM or SIGKILL the child process. Anyone has an idea on how is it possible to retrieve the return code?
    Thanks

    user13117585 wrote:
    Hello guys and thanks for your answers.
    Let me tell you a little more about my problem... I have a 3 steps process. The first step is done in the database. It updates a few tables. Then, when that step successfully ends, I need to start a second step. That second step is done on the server where I have my SQL Plus session. Because I actually have 2 different machines. The first one is where the database is running and the second one where I have SQL Plus (Oracle client 10g) and the program that I have to start in this second step. Then, once this process is finished and his return code is 0, then I have to execute the third step in the database.
    Basically, I wanted to have something like:
    VARIABLE returnCode
    BEGIN
    :returnCode := some_package.do_step_1;
    -- do whatever I want with returnCode.
    EXCEPTION WHEN ...
    END;
    HOST execute_external_program
    BEGIN
    IF external_job_succeed THEN
    some_package.do_step_3
    END IF;
    EXCEPTION...
    END;
    /I wanted to use the Oracle Scheduler to create an EXTERNAL JOB. The problem is that the external program is not deployed on the same machine as the database.I know that on 11g, we have external remote jobs. But I'm on 10g and I have no agent on the server where the external program is. So, what are my options? SQL*Plus and the host command... Or I can also write a bash script to do that... Or any hight level programming language...
    Any other idea?
    Thanks again guys,move functionality of second step into PL/SQL procedure resident inside DB.

  • Steps to migrate Project Server 2007 from SQL Server 2005 to SQL Server 2008?

    We need to migrate Project server 2007 from SQL Server 2005 to SQL Server 2008.
    1. Is it as simple as doing backup and restore of databases and pointing Project Server to the new DB server? Or there are some specific steps that should be followed?
    2. Article at
    http://technet.microsoft.com/en-us/library/dd207290(office.12).aspx is about moving databases from one DB server to another (same versions). At one place, it mentions to
    backup all databases but at another place it mentions that
    You should only back up the Draft and Published databases from the source database server.
    What should be done when moving from 2005 to 2008?
    Regards,
    Amit
    Gupta

    High Level step you can get this form  Tech net or MSDN too
    Shut down the SharePoint servers (App / Web)
    backup all of the SharePoint and Project
    Server databases from the SQL 2005 server
    copy these over to the new SQL 2008 server and restore all of
    the databases with the same names
    script out all of the logins used by SharePoint/PS from the SQL 2005 server and create these on the SQL 2008 server
    script out the Delete expired sessions SQL job from the SQL 2005 server and create this on the SQL 2008 server - or create them manually on the SQL 2008 server
    repoint the SQL server DNS Alias from the SQL 2005 server to the SQL 2008 server, if SharePoint and Project Server was installed using the actual SQL server name and no alias, you can create a DNS alias for the old SQL 2005 server name that points to the SQL
    2008 server. This is so that the SharePoint servers can still connect to the same SQL server name
    Start up the SharePoint servers
    kirtesh

  • CR 2008 SP3 FP 3.4 does not provide SQL Server Native Client 10.0

    One of my clients is running Crystal Reports 2008 SP3 Fix Pack 3.4 on a Windows 2008 R2 server and is running MS SQL 2008 (not R2) on a separate Windows 2008 R2 server.  This was installed to correct printer issues.  As expected, they started getting errors on some that use dates in the record selection formula. 
    I informed them that we needed to change the data connection driver from "Microsoft OLE DB Provider for SQL Server' to "SQL Server Native Client 10.0".  When they go in to create a new data connection the OLE DB (ADO) Provider list does not list "SQL Server Native Client 10.0" as an option.
    As I understand it from another thread on this site, this OLE DB client version is required for CR 2008 to properly interface with SQL 2008 and that it should be available after installing FP 3.2 or 3.3.  I made sure that they installed all fix packs in their released order. 
    Can anyone shed some light on this for me?

    Hello,
    Actually there is:
    {tblCaseData.CloseCodeID} = 2
    and {tblCaseData.CaseSplitTrusteeCode} 'A'
    and {%sql_Adj341Date} >= {?pf_BeginDate}
    and {%sql_Adj341Date} < DateAdd ( 'd', 1, {?pf_EndDate} )
    and {%sql_CountACH} = 0
    and {%sql_CountNameIDParties} = 0
    and {%sql_CourtWageDir} = 0
    {%sql_Adj341Date} >= {?pf_BeginDate} and {%sql_Adj341Date} < DateAdd ( 'd', 1, {?pf_EndDate} ) is the result of NOT statement.
    Try something like this:
    {tblCaseData.CloseCodeID} = 2
    and {tblCaseData.CaseSplitTrusteeCode} 'A'
    and ({%sql_Adj341Date} >= {?pf_BeginDate}
    and {%sql_Adj341Date} < DateAdd ( 'd', 1, {?pf_EndDate} ))
    and {%sql_CountACH} = 0
    and {%sql_CountNameIDParties} = 0
    and {%sql_CourtWageDir} = 0
    I added AND/OR/NOT etc. logic to:
    and ({%sql_Adj341Date} >= {?pf_BeginDate}
    and {%sql_Adj341Date} < DateAdd ( 'd', 1, {?pf_EndDate} ))
    You'll have to figure out what the correct bracketing should be for your data and what you want to get out of it. Possibly moving the date part to the end of the selection formula will "fix" this.
    Thank you
    Don

  • Sqlcmd: Error: Microsoft SQL Server Native Client 10.0

    Hi All .need help ..
    When I am running this from cmd on my sql 2008 database server:
    sqlcmd -U sa -S mymachinen_name\MSSQLSERVER   ,   MSSQLSERVER is my instance name ,
    I get prompt for password and after that I get this:
    Password: HResult 0x57, Level 16, State 1
    SQL Server Network Interfaces: Connection string is not valid [87].
    Sqlcmd: Error: Microsoft SQL Server Native Client 10.0 : A network-related or in
    stance-specific error has occurred while establishing a connection to SQL Server
    . Server is not found or not accessible. Check if instance name is correct and i
    f SQL Server is configured to allow remote connections. For more information see
     SQL Server Books Online..
    Sqlcmd: Error: Microsoft SQL Server Native Client 10.0 : Login timeout expired.
    I have my sqserver browser service started and also I can login through managemnet studio with windows authentication.
    Also found this :
    http://support.microsoft.com/kb/905618  , but this is for MS Server 2005/2000.
    Can you guys please help me.
    Regards

    Hello,
    Try the following commands from your computer and
    from the local server:
    SQLCMD -E -S mymachinen_name\MSSQLSERVER
    SQLCMD -E -S mymachinen_name
    Use SQL Server Management Studio and connect
    to the SQL server with the SA account
    and password. If this does not work,
    your SA account is disabled or the SQL
    server is configured for Windows authentication.
    If MSSQLSERVER is the default instance
    of your SQL Server, do not use it in your
    command line SQLCMD
    Check on your SQL server
    remote connections are enabled
    If you are using TCP / IP, add an inbound
    TCP exception in the firewall of your SQL
    server on port used by your SQL Server instance
    + an inbound UDP 1434
    exception for the SQL Server Browser service
    Regards
    Charlie Dancoisne - Independent Consultant & Trainer (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable. This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Upgrading SQL Server Questions

    Hi everyone.
    I've never upgraded SQL Server before, so I'm quite nervous (Maybe unnecessarily so?)...
    When I started development of the software we use here, another product required that we use SQL Server 2000.  That is no longer the case or an issue, so I wanted to upgrade SQL Server to a current version (That supports Windows Server 2003).  From
    my research, it looks like I would be able to upgrade to SQL Server 2008.
    I do have a few concerns though.
    1) Will my database function the same as it currently does?  Will my SQL Statements still work the same?  I haven't read anywhere where people were complaining of breaking changes, but I wanted to ask.  I would of course backup the database,
    but this database gets a lot of use, so I want to reduce headaches as best I can.
    2) How do I upgrade SQL Server?  I realize of course that this will be viewed as a ridiculously stupid question, but I genuinely have no idea and certainly don't want to botch that...
    3) Will this automatically upgrade all databases on the current server?
    4) Will I need to make any changes within my application, or will the upgrade be seamless from that aspect?
    5) Would I need to purchase anything for the upgrade?  I already have SQL Server as part of Visual Studio 2013...
    I really appreciate the help.

    Hello,
    1. In most cases normal upgrade works fine but if you are using a feature in you application that is not present in 2008 code might function differently.So testing is your best bet.In you case side by side upgrade would be best one
     2. Obtain new windows box and install SQL server 2008 on it.Migrate database from sql server 2000 to 2008 thorugh backup restore mechanism.Migrate logins and jobs as well by scripting it out and running it on 2008.RK on jobs and create script
    How to transfer logins
    Now test you application functionalities against this new database.See all works as expected if not change code accordingly.After you are confirmed that no app issue is there take full and trn saction log backup and restore it on 2008 and make it live
    dont decomission old 2000 let it be ther for 15 -20 days just in case.
    3. After you restore 2000 database backup on 2008 it will upgrade database automatically.You just need to change compatibility level to 100.
    alter database db_name set compatibility_level =100
    after this rebuild indexes and update stats for all tables and all databases.
    4. depends on issue if you face any speak to developer
    5 You need to have full version of SQL server installable.If you are planning to use express you can download from net.For standard /enterprise you need to have valid license
    Edit: As Olaf mentioned you need to run upgrade advisor as well ,even though it is required for inplace upgrade but that would be helpful, Still I would suggest for side by side approach
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Upgrade SQL/SSRS 2008R2 to 2012 SP1

    I'm testing upgrading SQL/SSRS from SQL 2008 R2 SP2 to
    SQL 2012 SP1 (11.0.3349). Most of my reports' data source is a Dynamics NAV 2009R2 SQL DB
    where most of the number fields are decimal(38,20). I'm finding that when I have
    a zero value in a column on a report that the report loses formatting and throws
    xml exceptions when rendered to Excel. So a field formatted for currency would
    become 0.00000000000000000 and renders as text in Excel 2010, but if there's a
    value in the cell then the formatting is fine. I'm looking on the MS site and
    there is documentation that this is an Excel issue and was supposed to be fixed
    in a CU for Office 2010 Excel, but I didn't see it in the release notes for the
    CU. The error is "Excel found unreadable context.." There are no errors in the
    report itself only rendering to Excel. Rendering to other formats is fine.
    I think I've found a workaround where I change the value in a report by using an if statement
    to make it equal to zero (IIF(value=0,0,value), but I've got several hundred
    reports in my library and I wouldn't even know how many cells I'd have to
    change.
    I'm just looking to see if anyone else has ran into this issue
    during their upgrade testing process. 
    I can repeat the error in a new report if I use as a Dataset
    Select Cast(0 as decimal(38,20)) d1
     , CAST(0 as decimal(10,2)) d2
    Export to Excel gets this error
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <recoveryLog xmlns="<logFileName>error056200_05.xml</logFileName><summary>Errors">http://schemas.openxmlformats.org/spreadsheetml/2006/main"><logFileName>error056200_05.xml</logFileName><summary>Errors
    were detected in file 'C:\Users\...ME...\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\P42V8D4D\_TestExcel.xlsx'</summary><repairedRecords summary="Following is a list of repairs:"><repairedRecord>Repaired
    Records: Cell information from /xl/worksheets/sheet1.xml part</repairedRecord></repairedRecords></recoveryLog>
    The d1 column is now formatted as text 0.00000000000000000000 instead of as currency and the d2 column is formatted correctly

    Hi Skywalker73,
    The issue seems to be related to the Excel 2010 or the Excel 2007-2010 rendering extension in SSRS 2012. If possible, I suggest that you keep the Office 2010 and the SQL Server 2012 up to date, and check the issue again.
    As a workaround, you can enable the Excel 2003 rendering extension in SSRS 2012, and use this render when exporting to Excel. Please use the following steps:
    1. Navigate to <drive:> Program Files\Microsoft SQL Server\ MSRS11.<Instance Name>\Reporting Services\ReportServer\.
    2. Backup the rsreportserver.config file before you modify it.
    3. Open the RSReportserver.config file with Notepad format, and modify the EXCEL render extension as follows:
    <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering"/>
    Then, the Excel 2003 render extension will be available in the Export drop-down list. 
    You can also enable the Excel 2003 render extension in Report Designer by setting the same render extension to visible in the following config file:
    C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\RSReportDesigner.config
    Regards,
    Mike Yin
    TechNet Community Support

Maybe you are looking for

  • Problem retrieving javabean instance from request in JSP

    I am using WSAD and I created a javabean called confirmBean in default package which contains two private properties fname, lname and public setters and getters In a servlet I placed values in the bean, then placed the bean in a request and then forw

  • How to Update Adobe Air sdk in Flex sdk ?

    Hi Guys, I am currently using Flex sdk 3.0 to develop Air application and right now there is a need to use new Air 2.0 features in my application. I have downloaded the Air sdk from adobe site but couldn't figure out how to update that sdk in my Flex

  • Reporting server installation fails

    Hi, I am installing SCOM  reporting on my SQL server and it keeps failing. I have disabled firewall on my management server (domain profile).  DNS resolution is also working, I am using separate instance of SQL server for SCOM. all services are runni

  • Making screen field uneditable in runtime

    Hi all,    I have a field that should be READ-ONLY when the screen appears (SCREEN-INPUT = 0). Then i should be able to select F4 help for the field, for which i make     SCREEN-INPUT = 1. But after selection of a value from the F4 help i want to mak

  • Refresh cl_gui_column_tree?? Howto??

    hi gurus. Im using a tree of cl_gui_columm_tree and i need to refresh the tree after several funcionalities but using the method update_nodes_and_items the tree doesnt refreshs. Anyone knows another way to refresh the tree?? Thk, Regards