Delete Patches

Dear All,
I just want to know that is there any procedure of patch reversal, because in some case if there is some error occured while importing the patch or some issue has created due to that patch, and I had decided to reverse that patch, I had heard there are some tables from PAT01 to PAT---, what is the procedure to do that, please help me.
Ravi Palanki

No not really. Depending on the "little mistake" - whatever that exactly is - you might be able to fix it via the version control. You have for all sources the version and you could make a modification so that the old source is active. I doubt that this is advisable in most situations. Patches fixes problems, you have to test the implementation and if you find new bugs you can ask SAP for corrections via notes.
Regards,
Jochen

Similar Messages

  • (11) TRIAL BALANCE REPORT에 PAID 된 INVOICE가 보이는 CASE

    제품 : FIN_AP
    작성날짜 : 2003-05-13
    TRIAL BALANCE REPORT에 PAID 된 INVOICE가 보이는 CASE
    ==============================================
    PURPOSE
    Applications 11.0.3 환경에서 AP의 Trial Balance Report 실행시 잘못 생성된 data가 보여지는 경우의 문제를 해결한다.
    Problem Description
    Paid 가 완전히 이루어져서 gl 로 까지 transfer 된 invoice가 trial balance report에 여전히 remaining 금액과 함께 나타나고 있다.
    이 때 Payament가 한번 void 되었다가 다시 reissue 된 경우이다.
    Workaround
    1. Aplist11.sql 이나 아래의 select 문으로 invoice 상태를 check한다.
    SELECT invoice_id, invoice_amount
    FROM ap_invoices_all
    WHERE invoice_num = <'problem invoice'>;
    2. Trial balance에 data가 어떻게 entry 되었는지 확인한다.
    SELECT *
    FROM ap_trial_balance
    WHERE invoice_id = <results from query #1>;
    3. Invoice 에 대한 payment 정보를 확인한다.
    SELECT invoice_id, invoice_payment_id, accounting_date, accrual_posted_flag,
    cash_posted_flag, posted_flag
    FROM ap_invoice_payments_all
    WHERE invoice_id = <results from query #1>;
    4. Payment에 대한 distribution line 정보를 확인한다.
    SELECT invoice_payment_id, payment_line_number, line_type_lookup_code,
    amount, base_amount
    FROM ap_payment_distributions_all
    WHERE invoice_payment_id = <invoice_payment_id returned in query #3>;
    일반적으로 void 되었다가 reissue 된 payment의 trial balance가 잘못된 경우는 ap_payment_distributions_all table에 data가 잘못 생성되었기 때문이다.
    위의 테이블에서 잘못 생성된 data를 correct 하거나 delete 한다음에
    patch 375496 을 이용하여 trial balance 를 rebuil 하는것이 workaround 이다.
    Solution Description
    $AP_TOP/patch/110/sql/apautopb.pls 의 버젼이 110.6 보다 낮은경우 이런 문제 예방을 위해 AP D patchset 이상을 적용한다.
    Reference Documents
    NOTE 106744.1

    maybe OP want to extract all numbers from his inbox using regular expressions?

  • Deployment from 11g to 10g connection string cannot get provider error.

    Hi, I'm doing a deployment from oracle client 11g to 10g. Is this possible? there are yes and no answer I have try out from the forum. All did not workout with any of the configuration setup.
    For development I am using VS2012, MVC 4. EF 4. Oracle 11g
    The server is currently running Oracle 10g with Oracle.Dataaccess.dll 10.2.0.100
    This is my connection string setup at the server.
    <?xml version="1.0"?>
    <!--
    For more information on how to configure your ASP.NET application, please visit
    http://go.microsoft.com/fwlink/?LinkId=169433
    -->
    <configuration>
    <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
    </configSections>
    <connectionStrings>
    <add name="OraAspNetConnectionString" connectionString="Data Source=dtsr;User Id=ids;Password=pwd;" providerName="Oracle.DataAccess.Client"/>
    <add name="OraAspNetConnectionString2" connectionString="Data Source=dtsr;User Id=ids;Password=pwd;" providerName="Oracle.DataAccess.Client.OracleConnection"/>
    </connectionStrings>
    <!--<startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
    </startup>-->
    <appSettings>
    <add key="webpages:Version" value="2.0.0.0"/>
    <add key="webpages:Enabled" value="false"/>
    <add key="PreserveLoginUrl" value="true"/>
    <add key="ClientValidationEnabled" value="true"/>
    <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
    </appSettings>
    <system.data>
    <DbProviderFactories>
         <add name="Oracle Data Provider for .NET" invariant="Oracle.DataAccess.Client" description="Oracle Data Provider for .NET" type="Oracle.DataAccess.Client.OracleClientFactory,Oracle.DataAccess,Version=4.112.3.0,Culture=neutral,PublicKeyToken=89b483f429c47342" />
    </DbProviderFactories>
    </system.data>
    <system.web>
    <compilation targetFramework="4.0">
    <assemblies>
    <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
    <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    <add assembly="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    </assemblies>
    </compilation>
    <httpRuntime/>
    <authentication mode="Windows"/>
    <identity impersonate="true"/>
    <pages controlRenderingCompatibilityVersion="4.0">
    <namespaces>
    <add namespace="System.Web.Helpers"/>
    <add namespace="System.Web.Mvc"/>
    <add namespace="System.Web.Mvc.Ajax"/>
    <add namespace="System.Web.Mvc.Html"/>
    <add namespace="System.Web.Optimization"/>
    <add namespace="System.Web.Routing"/>
    <add namespace="System.Web.WebPages"/>
    </namespaces>
    </pages>
    <sessionState mode="InProc" timeout="20" cookieless="false"/>
    </system.web>
    <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <handlers>
    <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit"/>
    <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit"/>
    <remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
    <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0"/>
    <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0"/>
    <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
    </handlers>
    <security>
    <authorization>
    <add accessType="Allow" users="?"/>
    </authorization>
    </security>
    </system.webServer>
    <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
    <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
    <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
    <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
    <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
    </dependentAssembly>
    <!--<dependentAssembly>
    <assemblyIdentity name="Oracle.DataAccess, Version=10.2.0.100, Culture=Neutral," publicKeyToken="89b483f429c47342" />
    <bindingRedirect oldVersion="10.2.0.100" newVersion="4.112.3.0"/>
              <publisherPolicy apply="no" />
    </dependentAssembly>-->
    </assemblyBinding>
    </runtime>
    <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>
    </entityFramework>
    </configuration>
    I get this error when page trying to connect to database.
    [ProviderIncompatibleException: An error occurred while getting provider information from the database. This can be caused by Entity Framework using an incorrect connection string. Check the inner exceptions for details and ensure that the connection string is correct.]
    System.Data.Entity.ModelConfiguration.Utilities.DbProviderServicesExtensions.GetProviderManifestTokenChecked(DbProviderServices providerServices, DbConnection connection) +163
    System.Data.Entity.ModelConfiguration.Utilities.DbConnectionExtensions.GetProviderInfo(DbConnection connection, DbProviderManifest& providerManifest) +39
    System.Data.Entity.DbModelBuilder.Build(DbConnection providerConnection) +46
    System.Data.Entity.Internal.LazyInternalContext.CreateModel(LazyInternalContext internalContext) +62
    System.Data.Entity.Internal.RetryLazy`2.GetValue(TInput input) +117
    System.Data.Entity.Internal.LazyInternalContext.InitializeContext() +453
    System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType) +18
    System.Data.Entity.Internal.Linq.InternalSet`1.Initialize() +56
    System.Data.Entity.Internal.Linq.InternalSet`1.get_InternalContext() +15
    System.Data.Entity.Infrastructure.DbQuery`1.System.Linq.IQueryable.get_Provider() +37
    I have check the
    1. Enviroment Variables path is set to the 10.../client_1/
    2. Tnsname.ora already configured.
    3. machine.config did not define the connection string path, as it is define in the web.config
    4. Oracle.Dataaccess.dll is in the bin of my application website (v4.112.3.0).
    5. In my application web bin folder also include additional dlll.
    mfc71.dll
    msvcr71.dll
    oci.dll
    ociw32.dll
    orannzsbb11.dll
    oraocci11.dll
    oraociicus11.dll
    OraOps11w.dll
    Anyone please help.. Thanks in advance..
    Edited by: 976886 on Dec 13, 2012 7:46 PM

    976886 wrote:
    I want to know, it is possible to migrate the application from oracle 11g to 10g? such that the component are supported across?
    Because in the development, all goes well, no error on the oracle connection.
    OR did I miss out anything that causes it not working on my server deployment?yes
    yes
    yes
    how can we reproduce what you claim?

  • Is 10.2.0.2 .patch_storage still needed after 10.2.0.3 upgrade

    I still have 1 GB in .patch_storage in the 10.2.0 Oracle Home after upgrading from 10.2.0.2 to 10.2.0.3. Can I delete it if I have not applied any 10.2.0.3 interim patches yet, or at least the ones that do not appear in the Inventory? I guess 2 interim patches get installed during the 10.2.0.3 patch installation.
    Oracle Client 10.2.0.1.0
    Oracle Database 10g 10.2.0.1.0
    Oracle Database 10g Products 10.2.0.1.0
    Oracle Database 10g Release 2 Patch Set 1 10.2.0.2.0
    Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0
    There are 5 products installed in this Oracle Home.
    Interim patches (2) :
    Patch 5556081 : applied on Tue May 01 18:46:20 PDT 2007
    Created on 9 Nov 2006, 22:20:50 hrs PST8PDT
    Bugs fixed:
    5556081
    Patch 5557962 : applied on Tue May 01 18:46:12 PDT 2007
    Created on 9 Nov 2006, 23:23:06 hrs PST8PDT
    Bugs fixed:
    4269423, 5557962, 5528974

    I think you can delete patch applied and not applied both, Because these patch belong to 10.2.0.2 and you already upgraded oracle to 10.2.0.3.
    Usually people keep old oracle home and patches for 3/6 Month before deleting it.
    Cheer,
    Virag

  • MainStage 2.1 release (64-bit)

    MainStage 2.1 Update
    This update delivers improved compatibility and numerous fixes.
    Issues addressed include:
    Support for 64-bit native mode
    Compatibility with 64-bit Audio Unit plug-ins
    Improved compatibility with MainStage 1.x documents
    Multiple Playback plug-ins in the same group now sync reliably
    Improved recording when using the Loopback plug-in
    Updated System Requirements
    32-bit mode requires Mac OS X 10.5.7 or later
    64-bit mode requires Mac OS X 10.6.2 or later
    The update is recommended for all users of MainStage 2.
    For detailed information on this update, including some restrictions when working in 64-bit mode, please visit this website: http://support.apple.com/kb/ts2566

    MainStage 2.1 Update
    This update improves overall performance and provides numerous fixes. This update is recommended for all users of MainStage 2.
    * An issue where Pressing Command-N to create a new concert could lead to MainStage quitting unexpectedly while the Save dialog was open for a previously loaded concert is resolved.
    * An issue that sometimes led to MainStage quitting unexpectedly when closing a concert or quitting MainStage is resolved.
    * An issue in which the Invert checkbox for mapping ranges could be unexpectedly enabled in a concert where the minimum mapping range was set, but the maximum was not altered is resolved.
    * An issue where CPU usage was initially higher than expected when loading some concerts created in MainStage 1 is resolved.
    * Importing patches from a concert whose layout contains more keyboard screen controls than the current concert no longer sometimes leads to incomplete display of settings in the Channel Strip Inspector.
    * An issue that lead the the name in the Mixer to fail to update when renaming an alias of a channel strip is resolved.
    * An issue where changes made to MIDI Out parameters on an external channel strip were not immediately displayed in an alias is resolved.
    * The screen display of an expression pedal in an alias patch now moves correctly in response to incoming data.
    * The number of sends shown on channel strips now immediately updates as expected after cut, copy, or paste of channel strips.
    * An issue that prevented mapping a screen control to the mute parameter on Bus 8 is resolved.
    * An issue where it was not possible to return audio from an Aux higher than Aux 8 is resolved.
    * Sends no longer sometimes lose settings when patches are imported, copied, cut, and pasted.
    * Polyphonic aftertouch is now sent to external instruments as expected.
    * Polyphonic aftertouch sent to software instruments no longer causes unexpected parameter changes.
    * Dragging an audio file into an empty patch now creates a channel strip with a Playback plug-in instantiated, as expected.
    * An issue that prevented EVB3 drawbars in the workspace from correctly updating when MIDI to Preset Key was enabled, and a new preset was triggered via MIDI, is resolved.
    * An issue that prevented screen controls from updating properly in response to CC7 and CC10 messages is resolved.
    * Mapping to Solo now works properly with hardware buttons that send single MIDI values.
    * Changing a Send All mapping from a channel strip directly to a MIDI mapping now works correctly.
    * Grouped buttons now update correctly with the send level parameter.
    * Mappings are no longer sometimes lost when importing layouts and patches exported from MainStage 1.x.
    * Reset to Saved Value now works reliably when changing patches.
    * MainStage no longer intermittently stops responding when choosing Undo after deleting patches.
    * An issue that prevented Keyboard objects from sending to all channels of a multitimbral external instrument is resolved.
    * Inputting notes while auditioning patches no longer sometimes causes MainStage to sometimes unexpectedly quit.
    * The I/O plug-in now works correctly on channel strips with "no input" selected.
    * MIDI input now works reliably with grouped keyboard controls.
    * The alert dialog "The document 'Untitled Concert' could not be saved as '2'" no longer appears when saving a concert with a long file name.
    * An issue that prevented Apple Remote from working as expected in Full Screen mode with Mac OS X v10.6.2 is resolved.
    * Setting preferences when there is no concert open now works as expected.
    * Parameter tabs now maintain a consistent order for multimapped parameters in duplicated patches.
    * Changes to "send Program change" and "send Bank change" in patches are now reliably saved.
    * Recordings in Loopback are now reliably maintained when Play on patch change is used while the transport is running with "Snap to:" set to "Bar/Beat."
    * Count-in now starts immediately on play in the Loopback and Playback plug-ins.
    * Setting a Loopback and Playback plug-in the same group and then recording to the Loopback no longer causes MainStage to quit unexpectedly.
    * Issues that sometimes caused the metronome to drift out of sync with the Playback and Loopback plug-ins are resolved.
    * MainStage remains responsive when making tempo adjustments in concerts that contain multiple instances of the Loopback plug-in with sync enabled.
    * The "Start with Play Action" command now reliably triggers all instances of Playback and Loopback in a group.
    * An issue that sometimes caused a small section of unexpected audio to sound when switching to a patch with Playback that had previously been stopped with the "instantly silence previous patch" command is resolved.
    * The "Begin Finding Patch in Performance" key command now works properly with patches whose names start with numbers.
    * Using the Undo command after deleting an object that is a member of a group in the workspace now correctly maintains the object's group membership.
    * Control labels are now correctly displayed when switching from full screen view to layout view.
    * An issue that caused the workspace in layout view to be invisible when remote connecting to a computer running MainStage with no display connected is resolved.
    * An issue that caused objects to become ungrouped when dragging them from the palette to the workspace is resolved.

  • Brief explaination of REST,Webservices,CSON and JSON

    brief explaination of REST,Webservices,CSON and JSON

    http://www.simplecodestuffs.com/what-is-the-difference-between-http-and-rest-and-soap-in-web-services/
    SOAP uses WSDL for communication between consumer and provider, whereas REST just uses XML or JSON to send and receive data
    WSDL Defines contract between client and service and is static by its nature. In case of REST contract is somewhat complicated and is defined by HTTP, URI, Media Formats and Application Specific Coordination
    Protocol. It’s highly dynamic unlike WSDL.
    SOAP doesn’t return human readable result, while REST result is readable with is just plain XML or JSON
    This is not true. Plain XML or JSON are not RESTful at all. None of them define any controls(i.e. links and link relations, method information, encoding information etc…) which is against REST as far as messages must be self contained and coordinate interaction
    between agent/client and service.
    With links + semantic link relations clients should be able to determine what is next interaction step and follow these links and continue communication with service.
    It is not necessary that messages be human readable, it’s possible to use cryptic format and build perfectly valid REST applications. It doesn’t matter whether message is human readable or not.
    Thus, plain XML(application/xml) or JSON(application/json) are not sufficient formats for building REST applications. It’s always reasonable to use subset of these generic media types which have strong semantic meaning and offer enough control information(links
    etc…) to coordinate interactions between client and server.
    REST is over only HTTP. HTTP is most widely used and when we talk about REST web services we just assume HTTP. HTTP defines interface with it’s methods(GET, POST, PUT, DELETE, PATCH etc) and various headers
    which can be used uniformly for interacting with resources. This uniformity can be achieved with other protocols as well.
    REST permits many different data formats where as SOAP only permits XML.
    While this may seem like it adds complexity to REST because you need to handle multiple formats, in my experience it has actually been quite beneficial. JSON usually is a better fit for data and parses much faster. REST allows better support for browser clients
    due to it’€™s support for JSON.
    If this helped you resolve your issue, please mark it Answered

  • WebLogic Portal not starting

    Hi Folks,
    I downloaded and installed weblogic 6.1 and weblogic portal 4.0. The weblogic server
    starts and runs with no problems. When I try starting the portal server I get the
    following error.
    Does anybody know whats causing this?
    <May 20, 2002 8:48:58 AM EDT> <Info> <Security> <Getting boot password from user
    .>
    Enter password to boot WebLogic server:
    Starting WebLogic Server ....
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.IllegalAccessError: try to access method weblogic/management/internal/
    Helper.preloadMBeanInfos()V from class weblogic/management/Admin
    at weblogic.management.Admin.initialize(Admin.java:210)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception
    Press any key to continue . . .

    "rich" <[email protected]> wrote:
    >
    >
    Hi Folks,
    I downloaded and installed weblogic 6.1 and weblogic portal 4.0. The weblogic
    server
    starts and runs with no problems. When I try starting the portal server
    I get the
    following error.
    Does anybody know whats causing this?
    <May 20, 2002 8:48:58 AM EDT> <Info> <Security> <Getting boot password from
    user
    .>
    Enter password to boot WebLogic server:
    Starting WebLogic Server ....
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.IllegalAccessError: try to access method weblogic/management/internal/
    Helper.preloadMBeanInfos()V from class weblogic/management/Admin
    at weblogic.management.Admin.initialize(Admin.java:210)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception
    Press any key to continue . . .After the reading the release notes I noticed other configurations that need to take
    place inorder for it to run with weblogic SP2. Here is the info that got it working:
    To Run Portal on WLS 6.1 SP2
    The following steps are required to run WebLogic Portal 4.0 with Service Pack 1 on
    WLS 6.1 with SP2:
    Apply Service Pack 1, as explained in the Installation Guide.
    Remove patches.jar
    Change the CapacityIncrement setting
    Remove patches.jar
    To remove patches.jar from your installation, take the following steps:
    Edit the set-environment.bat (Windows) / set-environment.sh (Solaris) to exclude
    reference to patches.jar.
    Delete patches.jar from bea_home/lib/ directory
    Change the CapacityIncrement setting
    In the P13N domain, this value is set to 0, which conflicts with WLS 6.1 SP2. Change
    this setting to 1 by editing the config.xml file.
    For more information on the CapacityIncrement setting in WLS 6.1, consult Configuring
    WebLogic JDBC Features in Programming WebLogic JDBC.

  • Clearing the Cache

    Hi
    I have been getting to grips with the sun update software over the last 2 days.
    In about a years time I see that the cache of downloaded patches will have a great deal of obsolete downloads.
    While my servers arent in production I wanted to check how I can clear the cache of updates downloaded to my update proxy (which is also a client, the only 1 I have at present).
    It would be nice to be able to delete patches, and other obsolete data (eg READMEs) that are in various directories below: /var/sadm/spool, that are older thatn a certain number of days, but I will settle for a complete clean if thats the only way.
    I tried a few things to clean the cache completely (this one was on the forum, but didnt work for me):
    cd /var/sadm/
    I moved the spool dir and created another with the same permissions and ownership
    patchsvr stop
    patchsvvr start
    But when I do an analyze in the updatemanger gui, I get (right at the end of the analysis, according to the progress bar anyway) a dialog with:
    Read System Analysis Data Error
    There is an error in reading system analysis data. Click on "Check
    for Updates" to restart a system analysis. If the problem persists,
    report the issue to your sysadmin or Sun.
    Selecting "Check for Updates" gives the same error.
    If I move the spool dir back again all is fine.
    I tried the same thing with the /var/sadm/spool/cache dir and got the same.
    Files are created in that dir.
    ./cache/collection/https%3A%2F%2Fgetupdates1.sun.com%2Fsolaris%2F%2Fcollection%2Fdefault
    ./cache/category/https%3A%2F%2Fgetupdates1.sun.com%2Fsolaris%2F%2Fcategory%2Fdefault
    ./cache/Database/https%3A%2F%2Fgetupdates1.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip
    ./cache/entitlement/https%3A%2F%2Fgetupdates1.sun.com%2Fsolaris%2F%2Fentitlement_client
    ./cache/https%3A%2F%2Fgetupdates1.sun.com%2Fsolaris%2F%2Fdetectors.jar
    Any ideas.
    Thanks
    Trevor

    I had a look further at this and, if you remove the *.jar files there is no issue. They are just downloaded again if required.
    This is even easier to do if you specify another location for the patches to be downloaded too.
    The problem is way less than I initially thought and its just the caching of READMEs viewed through updatemanger GUI and analysis ot available updates.
    Still they eventually could do with a cleanout.
    Cheers
    Trevor

  • [SOLVED] bibble5pro aur package not working?

    Hi together,
    i did
    yaourt -S -aur bibble5pro
    and installed this package. Worked without error, but by starting bibble5pro i got this:
    [vinschni@myhost ~]$ bibble5pro
    Install Path: /opt/bibble5pro
    LD_PATH: /opt/bibble5pro/lib:
    XLIB_SKIP_ARGB_VISUALS: 1
    linux-gate.so.1 => (0xb7810000)
    libkodakcms.so => /opt/bibble5pro/lib/libkodakcms.so (0xb7795000)
    libuuid.so.1 => /lib/libuuid.so.1 (0xb7773000)
    libtcmalloc_minimal.so.0 => /opt/bibble5pro/lib/libtcmalloc_minimal.so.0 (0xb7741000)
    libQtSvg.so.4 => /opt/bibble5pro/lib/libQtSvg.so.4 (0xb76f5000)
    libQt3Support.so.4 => /opt/bibble5pro/lib/libQt3Support.so.4 (0xb740f000)
    libQtSql.so.4 => /opt/bibble5pro/lib/libQtSql.so.4 (0xb7376000)
    libQtOpenGL.so.4 => /opt/bibble5pro/lib/libQtOpenGL.so.4 (0xb7301000)
    libGLU.so.1 => /usr/lib/libGLU.so.1 (0xb7293000)
    libGL.so.1 => /usr/lib/libGL.so.1 (0xb71cf000)
    libQtNetwork.so.4 => /opt/bibble5pro/lib/libQtNetwork.so.4 (0xb70d2000)
    libQtDesigner.so.4 => /opt/bibble5pro/lib/libQtDesigner.so.4 (0xb6df6000)
    libQtScript.so.4 => /opt/bibble5pro/lib/libQtScript.so.4 (0xb6cd5000)
    libQtXml.so.4 => /opt/bibble5pro/lib/libQtXml.so.4 (0xb6c90000)
    libQtGui.so.4 => /opt/bibble5pro/lib/libQtGui.so.4 (0xb63a8000)
    libpng12.so.0 => not found
    libSM.so.6 => /usr/lib/libSM.so.6 (0xb639f000)
    libICE.so.6 => /usr/lib/libICE.so.6 (0xb6388000)
    libXi.so.6 => /usr/lib/libXi.so.6 (0xb637b000)
    libXrender.so.1 => /usr/lib/libXrender.so.1 (0xb6372000)
    libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0xb636a000)
    libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0xb62e5000)
    libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0xb62b7000)
    libXext.so.6 => /usr/lib/libXext.so.6 (0xb62a9000)
    libX11.so.6 => /usr/lib/libX11.so.6 (0xb618f000)
    libQtCore.so.4 => /opt/bibble5pro/lib/libQtCore.so.4 (0xb5f69000)
    libz.so.1 => /usr/lib/libz.so.1 (0xb5f54000)
    libgthread-2.0.so.0 => /usr/lib/libgthread-2.0.so.0 (0xb5f50000)
    librt.so.1 => /lib/librt.so.1 (0xb5f47000)
    libglib-2.0.so.0 => /usr/lib/libglib-2.0.so.0 (0xb5e82000)
    libdl.so.2 => /lib/libdl.so.2 (0xb5e7e000)
    libpthread.so.0 => /lib/libpthread.so.0 (0xb5e64000)
    libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb5d6d000)
    libm.so.6 => /lib/libm.so.6 (0xb5d47000)
    libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb5d2a000)
    libc.so.6 => /lib/libc.so.6 (0xb5be3000)
    /lib/ld-linux.so.2 (0xb7811000)
    libpng12.so.0 => not found
    libpng12.so.0 => not found
    libpng12.so.0 => not found
    libGLcore.so.1 => /usr/lib/libGLcore.so.1 (0xb45d2000)
    libnvidia-tls.so.1 => /usr/lib/libnvidia-tls.so.1 (0xb45cf000)
    libpng12.so.0 => not found
    libpng12.so.0 => not found
    libexpat.so.1 => /usr/lib/libexpat.so.1 (0xb45a9000)
    libxcb.so.1 => /usr/lib/libxcb.so.1 (0xb4590000)
    libpcre.so.0 => /lib/libpcre.so.0 (0xb455d000)
    libXau.so.6 => /usr/lib/libXau.so.6 (0xb455a000)
    libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb4555000)
    ./bibblepro: error while loading shared libraries: libpng12.so.0: cannot open shared object file: No such file or directory
    Is there maybe missing a dependency in pkgbuild? Starting with root access dosen't make a difference. Hope somebody has an idea.
    Greetings,
    Vinschni
    Last edited by Vinschni (2010-04-16 12:11:51)

    Got it working.
    In libpng12 PKGBUILD was an error in line 26. After deleting 
    patch -p1 -i "${srcdir}/libpng-1.2.38-apng.patch" || return 1
    build was successful.
    Vinschni

  • Solaris 10 - / partition almost full - deleting obsoleted patches

    I installed Solaris 10 on a Sun Blade last month, and have used Sun Update Manager to patch my system regularly. Now, my / partition is 92% full:
    Filesystem kbytes used avail capacity Mounted on
    /dev/dsk/c0t0d0s0 6196110 5612522 521627 92% /
    /devices 0 0 0 0% /devices
    ctfs 0 0 0 0% /system/contract
    proc 0 0 0 0% /proc
    mnttab 0 0 0 0% /etc/mnttab
    swap 2305496 1064 2304432 1% /etc/svc/volatile
    objfs 0 0 0 0% /system/object
    fd 0 0 0 0% /dev/fd
    swap 2305504 1072 2304432 1% /tmp
    swap 2304480 48 2304432 1% /var/run
    /dev/dsk/c0t2d0s7 38476820 12548276 25543776 33% /data1
    /dev/dsk/c0t0d0s3 28420342 1772874 26363265 7% /space
    /dev/dsk/c0t0d0s7 3099342 769885 2267471 26% /export/home
    Does anyone know if/how I can remove old, obsoleted patch versions to free up some space? Is it recommended to use patchrm -f to remove old patch versions? I am hoping that I can avoid re-installing Solaris 10 and, in doing so, make my / partition larger.
    Also, I have noticed that Sun Update Manager (SUM) cannot install all available patches. Some patches are evidently signed, and will not install. The only way I have been able to install them is to separately download the unsigned version of the patch and use patchadd -Gd. Is this normal, or am I doing something wrong, or can I somehow reconfigure SUM to change this behavior?

    Command patchrm will remove patch and restore old version of patched files. Saved files are stored in /var/sadm/pkg/"PKG_NAME"/save/"PATCH_NO". You can remove these files, but you will not able to restore these files with patchrm. I found this example somewhere in the internet. It removes all saved patches older then 365 days.
    Example:
    find /var/sadm/pkg/*/save/??????-?? -type d -mtime +365 -prune | xargs rm -r
    I use smpatch (simple "smpatch update" command) utility, but i think it is probably same as SUM. smpatch downloads patches to /var/sadm/spool. When patches are successfully installed then they are deleted from this directory otherwise they remain there. They are downloaded as jar archives /var/sadm/spool/??????-??.jar and then unpacked into var/sadm/spool/??????-??.jar.dir. When you delete these files/directories, smpatch will just have to download them again when it is necessary. Log files can be found in /var/sadm/patch/??????-??.
    I have only problems with patches for Sun Studio. I must patchadd -G them manually from /var/sadm/spool. Sometime smpatch wants to install absurd patches but then installing simply failed.
    I must say, that if you delete files, you do it at your own risk!!!

  • Can i delete adobe patch files

    I have several huge files labeled patch files what are they, and can i delete them.  they are from two years ago...just wondering, want to clean up C drive

    See here:
    Re: Adobe Patch Files

  • Newly created tracks (audio or aux) default to names/patches from old deleted tracks?

    Hey all. I was an extremely heavy user of Logic 9 and still am of X, and I've worked out more problems than I care to remember in both programs, but this one has me totally stumped.
    When I create new tracks, they're using patches from old tracks I've already deleted. There are not saved patches either-- Logic is just remembering the names, effects, and routing of tracks I deleted earlier in my work session and using them instead of clean tracks. Create a new auxillary track? It defaults to Ultrabeat inputs (UB 13-14, let's say) and various effects (Bitcrusher, Chorus, etc) that were used on long-since-deleted Drum Machine tracks. Create a set of new audio tracks? They use the names ("Luke Vox", "Nick Clean Vox") and effects of old, long-deleted audio tracks that I used to have.
    This is a project file I got from a friend who is not necessarily as well versed in Logic X so it's entirely possible that something just got ticked or routed weirdly or who knows what. Any ideas?
    Logic X 10.1.1
    2 x 2.8GHz Quad-Core Intel Xeon
    12GB 800Hz DDR2 RAM
    Plenty of leftover storage on the drive.

    Hi
    Go to File:Project Settings:Audio
    Do you by any chance have Automatic Management of Channel Strip Objects unchecked?
    CCT

  • Can adobe patch files be deleted what are they whay do they take up so much space

    Can adobe patch files be deleted? What are they and why does it take up so much space?

    sweetboo5
    If you are using Premiere Elements 9 Mac, then the next thing to do is to get details on what you mean by "patch files".
    There are no "patch files" as you describe. There is a Premiere Elements 9.0.1 Update that needs to be used with the program. That you install and do not uninstall for best performance of the product.
    What I am wondering is this. Do you mean by patch files and the description that you give Scratch Files?
    If so, then you are looking at preview files and conformed audio and video files.
    I am strictly an Elements Windows person so you will have to help me translate my Premiere Elements 9.0/9.0.1 Windows instructions into meaningful ones for you as it relates to file location.
    Under Edit Menu/Preferences/Scratch Disk, where do you have Video Previews and Audio Previews directed. At that location, you should be able to delete these files. They are automatically generated when you render Timeline content. The consequence of deletion is that you will need to render again content in the project from which they came (if that project still exists). Go to the location shown and delete.
    Then look to see where the Media Cache is directed. Those are conformed audio and video files (cfa and pek). They can be deleted and will be regenerated by the program if and when needed. Go to the location shown and delete.
    Then look to Edit Menu/Preferences/Media and the Media Cache Database. That is targeting conformed video files (.mcdb file extension). They can be deleted and will be regenerated by the program if and when needed. You can click on the Clean button there to get rid of them instead of following the path to them as shown in the Media Cache Database area.
    Do not delete any source media that went into projects after they were saved closed.
    Please review the above and do not hesitate to ask if you need clarification on anything that I have written.
    If none of the above applies to your question, then please more details.
    Thanks.
    ATR

  • Deletion of Queues while upgrading the patches in ECC

    Dear Experts,
    We wanted to upgrade our ECC system with the new security patches and during that it is throwing an error.
    After analysing the error, found a SAP note  1081287 stating to delete BW queues in SMQ1 inorder to make it succesful.
    But as deletion of queues before loading data to BI will miss records.
    Is there any other way to take backup of the queues which are not yet loaded to BI before deletion so that without missing any records, I can restore my queues after the upgradation of the patches.
    Will be very thankful if anyone responds at the earliest.
    Best Rgds
    Kumar

    Hi Kumar,
    You would need to run the V3 jobs for all applications so that data will be written to the delta queues from the update/extraction queues. Then do delta loads from BW. Then you can clear the queues and no data would be lost.

  • Delete old patches

    Hi,
    When I try to delete old patches at the root of the ZPM folder, in ZCC, I
    have this message:
    The object "<Patch name>" cannot be deleted
    Why ?

    No they are definitely not listed in Patches in Patch Management. I have
    443 patches there. I have also over the years done a few resets on the
    Patch Management system. We've been towing these 9000+bundles around for a
    number of ZCM versions. They never got cleaned up and I don't seem to have
    a way to get rid of them.
    For example if I try to delete the bundle\zpm\Adobe Acrobat Reader 5.1
    0000029C I get 'The object \"Adobe Acrobat Reader 5.1 0000029C\" cannot be
    deleted.'
    Jim Koerner
    "Shaun Pond" <[email protected]> wrote in message
    news:[email protected]..
    > Jim,
    >
    > Now I've not tried this myself, but have you tried deleting them in
    > Patch Management? You say they don't show up, but do you see them if
    > you check /all/ the boxes? Also, Patch Management has changed a lot
    > over the different versions of ZCM - each version has fixed issues with
    > a design that wasn't as smooth a fit as it might have been...
    >
    > --
    >
    > Shaun Pond
    >
    >

Maybe you are looking for

  • How can I put a single song in ipod without having to reset it ?

    How can I put a single song in ipod without having to reset it ?

  • Live Preview Highlight is not working.

    I recently downloaded Edge Code to a new work computer and the Live Preview Highlight is not working. I have Edge Code installed on a personal computer, and it works great. The version I am using was downloaded about 6 months ago so I am not sure if

  • Can you set a password to prevent access to settings

    Hi I have an iphone and ipad and back up all devices to icloud. I have purchased an ipad mini for both of my children and because they are young are using my apple id and password to download apps although I put the password in each time. I have turn

  • Sources of Supply in SRM ?

    Hi friends Sources of Supply in SRM How is automatic determination of sources of supply priorities of sources of supply Regards Surya

  • Cant access my Database with the new user I created

    Hi, I creatred a database using All Programs> Oracle OraDB10_home1> Configuration Aand Managing Tool> Data Base COnfiguration Assitance. My DB name is MYTestDB. Then I created a user trough http://localhost:1158/em my user name is testuser and passwo