Whats the best practice to simply manage data using php sql?

Hi
I'm trying to follow some tutorials but there is too much old material and I'm getting confused.
This is basic. I have a db and I want to movement data from flex.
So, this is how I'm trying to do so. As a newbie, I will try to be clear.
I have created a simple table called "teste" using myphpadmin with only 2 fields for testing.  (id, name).
I have created the services automaticly using flex to generate a php code.
This code is a simple exercise with buttons to add, update, and delete a Item.
Although there is a lot of auto-generated code, I had a lot of work (due to my ignorance) to make it work.
It fairly works, but I know veteran users would make it better, smarter, shorter, and ALL I WANT is a better (and simple) example to follow
Please.
Thanks in advance
ps. I have set my table field "name" to the 'utf8_unicode_ci' while creating it and I it seems the adobe's generated php can't handle latin chars.
THE CODE AS FOLLOWS:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                  xmlns:s="library://ns.adobe.com/flex/spark"
                  xmlns:mx="library://ns.adobe.com/flex/mx"
                  minWidth="955" minHeight="600"
                  xmlns:valueObjects="valueObjects.*"
                  xmlns:testeservice="services.testeservice.*"
                  creationComplete="application1_creationCompleteHandler()" >
<fx:Script>
          <![CDATA[
               import mx.collections.ArrayCollection;
               import mx.controls.Alert;
               import mx.events.FlexEvent;
               import mx.events.ListEvent;               
               import spark.events.IndexChangeEvent;
               import spark.events.TextOperationEvent;               
               //selected item
               public var selId:int;
               //------GET ITEM (init)------------------------------------------------------
               protected function application1_creationCompleteHandler():void
                    tx_edit.addEventListener(KeyboardEvent.KEY_UP,parallelEdit)
                    getAllTesteResult.token = testeService.getAllTeste();                    
               //------SELECTED ITEM ID------------------------------------------------------          
               protected function list_changeHandler(event:IndexChangeEvent):void
                    selId = event.currentTarget.selectedItem.id;
                    lb_selectedId.text = "sel id: "+ selId;
                    if(tb_edit.selected) tx_edit.text = event.currentTarget.selectedItem.name;
               //------ADD ITEM-----------------------------------------------------
               protected function button_clickHandler(event:MouseEvent):void
                    var teste2:Teste     =     new Teste();
                    teste2.name                = nameTextInput.text;
                    createTesteResult.token = testeService.createTeste(teste2);
                    application1_creationCompleteHandler();
               //------UPDATE ITEM (in parallel)-----------------------------------------------------
               private function parallelEdit(e:KeyboardEvent):void
                    if(!isNaN(selId) && selId > 0){
                         if(tb_edit.selected){
                              //uptadating
                              teste2.id                     = selId;
                              teste2.name                = tx_edit.text;
                              updateTesteResult.token = testeService.updateTeste(teste2);
               //------UPDATE ITEM (button click)-----------------------------------------------------
               protected function button3_clickHandler(event:MouseEvent):void
                    teste2.id                     = parseInt(idTextInput2.text);
                    teste2.name                = nameTextInput2.text;
                    updateTesteResult.token = testeService.updateTeste(teste2);
               //------DELETE ITEM------------------------------------------------------     
               protected function button2_clickHandler(event:MouseEvent):void
                    if(!isNaN(selId) && selId > 0)     deleteTesteResult.token = testeService.deleteTeste(selId);
          ]]>
     </fx:Script>
     <fx:Declarations>
          <!-- this part was mostly auto generated -->
          <valueObjects:Teste id="teste"/>
          <testeservice:TesteService id="testeService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
          <s:CallResponder id="createTesteResult"/>          
          <s:CallResponder id="getAllTesteResult"/>
          <s:CallResponder id="deleteTesteResult"/>
          <s:CallResponder id="updateTesteResult"/>
          <valueObjects:Teste id="teste2"/> 
     </fx:Declarations>
          <!-- this are just visual objects. Renamed only necessary for this example
                most lines were auto-generated-->
     <!--Create form -->
     <mx:Form defaultButton="{button}">
          <mx:FormItem label="Name">
               <s:TextInput id="nameTextInput" text="{teste.name}"/>
          </mx:FormItem>
          <s:Button label="CreateTeste" id="button" click="button_clickHandler(event)"/>
     </mx:Form>     
     <!--Create Result -->
     <mx:Form x="10" y="117">
          <mx:FormItem label="CreateTeste">
               <s:TextInput id="createTesteTextInput" text="{createTesteResult.lastResult as int}" />
          </mx:FormItem>
     </mx:Form>
     <!--List -->
     <s:List x="10" y="179" id="list" labelField="name" change="list_changeHandler(event)">
          <s:AsyncListView  id="anta" list="{getAllTesteResult.lastResult}" />
     </s:List>
     <!--Update in parallel -->
     <s:Label x="147" y="179" id="lb_selectedId"/>
     <s:Button x="147" y="222" label="Remove" id="button2" click="button2_clickHandler(event)"/>
     <s:TextInput x="225" y="257" id="tx_edit"/>
     <s:ToggleButton x="147" y="257" label="Edit" id="tb_edit"  />
     <!--Update with button click -->
     <mx:Form defaultButton="{button3}" x="220" y="0">
          <mx:FormItem label="Id">
               <s:TextInput id="idTextInput2" text="{teste2.id}"/>
          </mx:FormItem>
          <mx:FormItem label="Name">
               <s:TextInput id="nameTextInput2" text="{teste2.name}"/>
          </mx:FormItem>
          <s:Button label="UpdateTeste" id="button3" click="button3_clickHandler(event)"/>
     </mx:Form>
</s:Application>

Sorry - I had to read up on what a base table block was.
I think I am. In this particular form I have one block - a customer block which has its items pulled in from the customer table, no problems there, it works fine.
My problem is I need to make it as user friendly as possible, if the user inputs the wrong customer ID (or does not know their name) I want them to be able to scroll through the customer list using an up or down button.
When do you have the commit_form statement run, (the OK button) after every change or after a block of changes ? Commit writes the changes to the database giving other users access to that data right ?! How often should it be used ?

Similar Messages

  • What are the best practices for Database management and performance tuning?

    Hello,
    I want to ensure that I am using the best practices for managing and maintaining our Database.
    Is there any documentation out there that outlines how to maintain and ensure top performance out of our database?
    Thank you!
    John Sefton

    I appreciate the responses, however this is not the information I am looking for.
    I am specificaly looking for best practices invloving the managment and performance tuning.
    Example: are their tools that I can install that will monitor the size and response time of the database and alert me if there is degradation in performance?
    Are there specific periodic activities I should be doing to garuntee that my database will continue to function that way it is supposed to?
    Or is this a fire and forget solution that does not need this attention?

  • What is best practice for remotely managing bank of switches over POTS

    I need to be able to have a back door into several catalyst switches and ASA.
    What is the best practice for accessing them remotely. ?

    Just place a modem into any console port. Ideally you use a terminal server, but is not always really needed.

  • Whats the best way to extract hex data from control code a Intel format

    Does anyone know an easy way to extract the green set of data from this EEPROM dump?
    :020000040000FA
    :10420000110022003300440055006600770088004A
    :104210009900AA00BB00CC00EE00FF00FF00FF00E9
    :10422000FF00FF00FF00FF00FF00FF00FF00FF0096
    :10423000FF00FF00FF00FF00FF00FF00FF00FF0086
    :10424000FF00FF00FF00FF00FF00FF00FF00FF0076
    :10425000FF00FF00FF00FF00FF00FF00FF00FF0066
    :10426000FF00FF00FF00FF00FF00FF00FF00FF0056
    :10427000FF00FF00FF00FF00FF00FF00FF00FF0046
    :10428000FF00FF00FF00FF00FF00FF00FF00FF0036
    :10429000FF00FF00FF00FF00FF00FF00FF00FF0026
    :1042A000FF00FF00FF00FF00FF00FF00FF00FF0016
    :1042B000FF00FF00FF00FF00FF00FF00FF00FF0006
    :1042C000FF00FF00FF00FF00FF00FF00FF00FF00F6
    :1042D000FF00FF00FF00FF00FF00FF00FF00FF00E6
    :1042E000FF00FF00FF00FF00FF00FF00FF00FF00D6
     :10430000FF00FF00FF00FF00FF00FF00FF00FF00B5
    :10431000FF00FF00FF00FF00FF00FF00FF00FF00A5
    :10432000FF00FF00FF00FF00FF00FF00FF00FF0095
    :10433000FF00FF00FF00FF00FF00FF00FF00FF0085
     :10434000FF00FF00FF00FF00FF00FF00FF00FF0075
     :10435000FF00FF00FF00FF00FF00FF00FF00FF0065
    :10436000FF00FF00FF00FF00FF00FF00FF00FF0055
    :10437000FF00FF00FF00FF00FF00FF00FF00FF0045
    :10438000FF00FF00FF00FF00FF00FF00FF00FF0035
    :10439000FF00FF00FF00FF00FF00FF00FF00FF0025
    :1043A000FF00FF00FF00FF00FF00FF00FF00FF0015
     :1043B000FF00FF00FF00FF00FF00FF00FF00FF0005
    :1043C000FF00FF00FF00FF00FF00FF00FF00FF00F5
     :1043D000FF00FF00FF00FF00FF00FF00FF00FF00E5
     :1043E000FF00FF00FF00FF00FF00FF00FF00FF00D5
     :1043F000FF00FF00FF00FF00FF00FF00FF00FF00C5
     :02401200FF3F6E
     :00000001FF

    rolfk wrote:
    crossrulz,
    Intel Hex Format is a text format describing binary data, usually used for chip programming devices. Besides records for the actual data itself it also allows for addressing records, such that you only need to have the data in the file that needs to be written to the chip, even if the various areas are all over the address range of the chip. Since it is a well known format for hardware developers, some people coming here assume that everybody knows what it is. Of course many true softies may never have heard of it.
    rolfk, thanks for the information.  I was not aware of this.  I guess I am a true softie even with my EE background.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Whats the best practice

    Should a person use an external firewall appliance,or another computer as a firewall, between the XServe and the real world.

    IMHO the answer depends on your network size, both in terms of number of systems and total bandwidth.
    The built-in firewall is good enough at protecting individual machines, but if you're running multiple machines then a dedicated firewall appliance is usually better - it has better management controls, it's easier to setup for multiple machines, and takes the work of filtering traffic off your hosts.
    As for brand, be aware that most home/SOHO routers include limited firewall functionality, so check whatever your ISP has provided to see what you have already - it might be sufficient. You don't say what scale you're looking for to know what's appropriate.
    If you need a commercial-grade firewall then check out NetScreen, which come in a range of sizes from home user to datacenter-grade. Other viable commercial products include Cisco's <a href="http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/index.html"PIX</a> range, although I wouldn't recommend PIX for your average home user.

  • I am using the database connectivity toolkit to retrieve data using a SQL query. The database has 1 million records, I am retrieving 4000 records from the database and the results are taking too long to get, is there any way of speeding it up?

    I am using the "fetch all" vi to do this, but it is retrieving one record at a time, (if you examine the block diagram) How can i retrieve all records in a faster more efficient manner?

    If this isn't faster than your previous method, then I think you found the wrong example. If you have the Database Connectivity Toolkit installed, then go to the LabVIEW Help menu and select "Find Examples". It defaults to searching for tasks, so open the "Communicating with External Applications" and "Databases" and open the Read All Data. The List Column names just gives the correct header to the resulting table and is a fast operation. That's not what you are supposed to be looking at ... it's the DBTools Select All Data subVI that is the important one. If you open it and look at its diagram, you'll see that it uses a completely different set of ADO methods and properties to retrieve all the data.

  • Best practice for putting binary data on the NMR

    Hi,
    We're creating a component that will consume messages off the NMR, encode them, and subsequently put them back on the NMR. What's the best practice for sending binary data over the NMR?
    1. setContent()?
    2. addAttachment()?
    3. setProperty()?
    If NormailzedMessage.setContent() is the desired approach, then how can you accomplish that?
    Thanks,
    Bruce

    setContent() is used only for XML messages. The recommended way to accommodate binary data is to use addAttachment().

  • What is the best practice for genereating seq in parent

    I'm wondering what the best practice is for generating seq in parent.
    I have the following tables:
    invoice(id, date, ...)
    invoice_line(invoice_id, seq, quantity, price ...)
    There are shown in 1 uix displaying invoice in form layout and invoice lines in tabular layout.
    Now I like the seq automaticaly generated by ADF Business Components, not enterable by the user.
    The 1st record within each invoice should get seq 1.
    Regards,
    Marcel Overdijk

    Marcel,
    I think best practices is to create a database trigger on the tables that obtains the sequence number from a database sequence on insert.
    In JDeveloper assign DBSequence as a type to the attribute representing the sequence field in the EO. ADF BC then assigns a temporary value to it. The real sequence number then gets added on submit.
    If you want to have IDs that don't miss a single number, then database seuqences may not be a good option. In this case you would use the table trigger to implement your own sequencing.
    Frank

  • What's the 'best practice' way to get email and fax number from vendor?

    Hello *,
    could anybody let me know what the 'best-practice' is to get the fax number and smtp address from the vendor master? Is there a preferred function module I should use?
    Thanks a lot,
    Torsten

    Hi ,
    try that:
    TYPE-POOLS: szadr.
    DATA adr_kompl TYPE szadr_addr1_complete.
    DATA adr1 TYPE szadr_addr1_line.
    DATA adtel TYPE szadr_adtel_line.
    DATA admail TYPE szadr_adsmtp_line.
    DATA adfax TYPE szadr_adfax_line.
    CALL FUNCTION 'ADDR_GET_COMPLETE'
           EXPORTING
                addrnumber              = lfa1-adrnr
           IMPORTING
                addr1_complete          = adr_kompl
           EXCEPTIONS
                parameter_error         = 1
                address_not_exist       = 2
                internal_error          = 3
                wrong_access_to_archive = 4
                OTHERS                  = 5.
    * Mail
      LOOP AT adr_kompl-adsmtp_tab INTO admail.
        MOVE admail-adsmtp-smtp_addr TO atab-mail.
      ENDLOOP.
    * fax
      LOOP AT adr_kompl-adfax_tab INTO adfax.
        MOVE adfax-adfax-fax_number TO atab-fax_number.
      ENDLOOP.
    regards Andreas

  • What is the best practice for connecting to different schemas?

    Hi all,
    We are porting an application from SQL Server to oracle and would like to know what the best practices are in oracle for user connections to an Oracle instance.
    More or less the question could be put like this:
    1) The equivalent of a SQL Server Database in Oracle is a Schema. (more or less)
    2) A specific application has it's own schema where it keeps all related objects (Tables, etc)
    3) In SQL Server you grant access to the Database and its objects (Tables, etc) to all users of the application.
    4) In Oracle do you grant access to the Schema and its objects (Tables, etc) to all users of the application also? Or do all users log
    in as the schema owner?
    So in Oracle if there existed [SchemaApplication].[table1], how would [userChris] and [userDave] query [SchemaApplication].[table1]?
    Would Chris and Dave log in as [userChris] and [userDave], or would they normally log in as [userApplication]?
    finally, is it good practice to log in as a unique user eg [userChris] and then issue the
    alter session set current_schema = shemaApplication;
    command to change the way references to tables are interpreted?

    We are porting an application from SQL Server to oracle and would like to know what the best practices are in oracle for user connections to an Oracle instance.
    More or less the question could be put like this:
    1) The equivalent of a SQL Server Database in Oracle is a Schema. (more or less)
    2) A specific application has it's own schema where it keeps all related objects (Tables, etc)
    3) In SQL Server you grant access to the Database and its objects (Tables, etc) to all users of the application.
    4) In Oracle do you grant access to the Schema and its objects (Tables, etc) to all users of the application also? Or do all users log
    in as the schema owner?There are ways to implement the same.
    Case 1.
    Create different roles, such as APP_ROLE, READONLY_ROLE. Create public synonym for objects in SchemaApplication user. Grant these role to single user say appUser this is different from you SchemaApplication user. Use appUser to connect to application and for different user like userChris, userDave provide another layer of security. Say userDave is allowed only to deal with cash related transaction, so allow him to open only those screens which are related to cash transaction only.
    Case 2.
    Create public synonym and grant privilege on tables from SchemaApplication to different users (say userChris, userDave).
    So in Oracle if there existed [SchemaApplication].[table1], how would [userChris] and [userDave] query [SchemaApplication].[table1]?This is resolved by public synonym. There are private synonym as well, you can create this also but in this case you have to create private synonym for each of the users.
    Would Chris and Dave log in as [userChris] and [userDave], or would they normally log in as [userApplication]? I would suggest you to connect either using a new user(Case 1) or the user itself has account in the database(Case2).
    finally, is it good practice to log in as a unique user eg [userChris] and then issue the
    alter session set current_schema = shemaApplication;
    No. It is not a good practice to allow the user to login to database using the application owner.
    command to change the way references to tables are interpreted?The public/private synonym can be used to resolve the schema.object value. For example, if SchemaApplication has table T, then you can create public synonym as 'CREATE PUBLIC SYNONYM T FOR SchemaApplication.T'; and now you can refer this table as T from any other schema(user).
    HTH
    Virendra

  • Best practice for simply invoking a web service

    Hello,
    We have web services deployed and accessible as wsdl documents in the SOA service manager/UDDI product. What is the best practice for simply calling a web service method deployed without regard to whether it is deployed on Tomcat, WebSphere, Oracle, etc.
    I'd just like to create a java client to make a web service call and JAXRPC has me confused because you seem to have to have custody of the web service implementation code to call a service. Can someone point me in the right direction?
    Thanks,
    Sean

    Thanks. Here is my wsdl, how would you say this is encoded?
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
         name="OracleProcess"
         targetNamespace="http://xmlns.oracle.com/OracleProcess"
         xmlns="http://schemas.xmlsoap.org/wsdl/"
         xmlns:tns="http://xmlns.oracle.com/OracleProcess"
         xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
         xmlns:client="http://xmlns.oracle.com/OracleProcess"
        >
        <types>
            <schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/OracleProcess"
                 xmlns="http://www.w3.org/2001/XMLSchema">
                <element name="OracleProcessProcessRequest">
                    <complexType>
                        <sequence>
                            <element name="input" type="string"/>
                            <element name="input2" type="string"/>
                        </sequence>
                    </complexType>
                </element>
                <element name="OracleProcessProcessResponse">
                    <complexType>
                        <sequence>
                            <element name="result" type="string"/>
                        </sequence>
                    </complexType>
                </element>
            </schema>
        </types>
        <message name="OracleProcessRequestMessage">
            <part name="payload" element="tns:OracleProcessProcessRequest"/>
        </message>
        <message name="OracleProcessResponseMessage">
            <part name="payload" element="tns:OracleProcessProcessResponse"/>
        </message>
        <portType name="OracleProcess">
            <operation name="process">
                <input message="tns:OracleProcessRequestMessage"/>
                <output message="tns:OracleProcessResponseMessage"/>
            </operation>
        </portType>
        <binding name="OracleProcessBinding" type="tns:OracleProcess">
            <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
            <operation name="process">
                <soap:operation style="document" soapAction="process"/>
                <input>
                    <soap:body use="literal"/>
                </input>
                <output>
                    <soap:body use="literal"/>
                </output>
            </operation>
        </binding>
        <service name="OracleProcess">
            <port name="OracleProcessPort" binding="tns:OracleProcessBinding">
                <soap:address location="http://st4s:9700/orabpel/default/OracleProcess/1.0"/>
            </port>
        </service>
      <plnk:partnerLinkType name="OracleProcess">
        <plnk:role name="OracleProcessProvider">
          <plnk:portType name="tns:OracleProcess"/>
        </plnk:role>
      </plnk:partnerLinkType>
    </definitions>

  • What is best practices

    hi gurus,
    I would like know what is best practices.  Where we will use this best practices.  What are the benefits we will get through best practices. For whcih industry it is useful.
    If any one help me in this following subject .  I will be value added for me.
    Thanks in advance

    Dear nag
    SAP Best Practices facilitate a speedy and cost-efficient implementation of SAP Software with a minimal need for planning and resources. SAP Best Practices are suited to the enterprise requirements of different industries. They integrate well with varying financial accounting and human resource management systems and can be used by enterprises of any size.
    => SAP Best Practices are a central component of the second phase of ValueSAP (Implementation). The ValueSAP framework guarantees value throughout the entire life cycle of SAP Software.
    => SAP Best Practices are a cornerstone of mySAP.com, since all the key elements of mySAP.com are linked to SAP Best Practices through preconfiguration. Key elements include:
              <> Preconfigured collaborative business scenarios
              <> Preconfigured mySAP.com Workplaces
              <> Preconfigured access to electronic marketplaces
              <> Preconfigured employee self-services
    Features
    SAP Best Practices consist of:
    An industry-specific version of AcceleratedSAP (ASAP) including various tools such as the Implementation Assistant, the Question & Answer database (Q&Adb), detailed documentation of business processes and accelerators:
    The industry-specific version of ASAP provides extensive business knowledge in a clear, structured format, which is geared towards the needs of your enterprise. You can use the reference structures with industry-specific end-to-end business processes, checklists and questions to create a Business Blueprint. This document contains a detailed description of your enterprise requirements and forms the basis for a rapid and efficient implementation of an SAP System.
    Preconfigured systems providing you with the industry-specific and/or country-specific Customizing settings you need to effectively implement business processes relevant to your enterprise
    Key elements include:
    -> Tried and tested configuration settings for the critical processes in your industry including special functions that are standard across all the preconfigured systems
    -> Documentation on configuration, which provides project team members with a comprehensive overview of the system settings
    -> Master data, which you can easily change or extend, for example, organizational structures, job roles, and customer/vendor master records
    -> Test catalogs that can be used to replay test processes in training courses, for example, to help you gain a better understanding of how processes work in the system
    Thanks
    G. Lakshmipathi

  • Best practice for window management

    Hi all,
    I'm pretty new at flex and I have to develop an application.
    I don't know yet what the best practices are to have a consistent layout and code
    - The program must have different views (scheduling, settings, adminwindow, ....)
         What is the best way to switch between these views? Should I use a tabbar or a buttonbar?
    - What should a view be made off? Should I use different states, or should I switch between windows, or use something else?
    That's it for now, thanks all.
    Greets me
    btw, I try to use spark as much as possible..

    Hi,
    You can check these links and white papers which explains the business scenarios and best practices
    http://www50.sap.com/businessmaps/9AD1FC0540D0479CA76C4CA1EE9AF668.htm
    http://www.sap.com/solutions/business-suite/erp/brochures/index.epx - "Audit management with SAP software".
    Regards,
    Keerthi

  • Any best practice for Key Management with Oracle Obfuscation?

    Hi,
    I was wondering if anyone is aware if there are any best practices regarding key management when using Oracle's DBMS_OBFUSCATION_TOOLKIT? I'm particularly interested in how we can protect the encryption/decryption key that we would use.
    Thanks,
    Jim

    Oracle offers this document, which includes a strategy for what you're after:
    http://download-west.oracle.com/docs/cd/B13789_01/network.101/b10773/apdvncrp.htm#1006234
    -Chuck

  • Best Practices for Content Management

    Hi All,
    Could anybody suggest me what are the best practices for Content Management.
    Regards,
    Tom

    Hi Rajan,
    Even I want the same. I shall be very thankfull to you if you can send me also.
    My mail ID is [email protected]
    Best Regards,
    Chamkaur
    Message was edited by:
            Chamkaur Brar

Maybe you are looking for

  • MBP: The itunes library file cannot be saved. A folder was specified instead of a file

    I've started getting this error on my MBP from iTunes: I am running a MacBookPro with Snow Leopard 10.6.7 and iTunes 10. Other than this warning, I can't detect any operational problems with iTunes, but rather than mask it, I'd prefer to fix it. The

  • Export workbooks in discoverer admin

    hello I am able to export workbooks from discoverer admin. in DEV env. The file is in '.eex' format. How can I import '.eex' file into Discoverer Desktop in Test env. If i import the same .eex file into Discv Admin @ Test..How can i open it in Deskto

  • Rogue Redirect HELP Please!

    I have designed and implemented a scroll page with a Lightbox Image Gallery a couple of weeks ago. When it went live it acted just fine. Everything worked as it should have. Now, regardless of browser (and even in muse preview), when a thumbnail imag

  • Upgrade from 10.2.0.2 to 10.2.0.4 failed

    The OMS upgrade from 10.2.0.2 to 10.2.0.4 fails at the repository upgrade with the following error message. SEVERE: oracle.sysman.top.oms:CfwException in Run OS Command:Command: /opt/oracle/OEM/oms10g/sysman/admin/emdrep/bin/RepManager -connect (DESC

  • I keep having a youtube video come up on Facebook when I open ithe APP.

    I have the FaceBook app installed on my iPad (phone app) & today everthing I go into it a YouTube video comes up for me to play. I HAVE NOT PLAYED IT. Does anyone have any idea what is happenind? This just started today. Ia ir pssible that this could