Request online?

I wanted to show all the principal applicant and their name, prog_code, reg_case, person_name REGN and indicate if they have children in their record (i.e. < 12 months as infants and toddlers 1-3). The principal applicant will program code as primary and others on the same record "add-on". "." I was able to write the query to indicate if the main recorder have all babies / toddlers by using the inline query but wanted to know if there is another way to get the desired without inline query result. If the key logger has one or more children, the column 'infants or toddlers' should be there according to their age.

Regn ID Case of Reg Program code Person Date of birth a baby? a toddler?
1Thomas Jr.PrimaryThomas MoodyJanuary 1, 1978THERE(NULL)
2DoloresPrimaryDoloresAugust 21, 1975NULL VALUETHERE
3MikeMike MatsonMike MatsonJanuary 1, 1980NULL VALUENULL VALUE

SQL query:

SELECT R.REGN_ID,

R.REG_CASE,

P.PROG_CODE,

PD. PERSON_NAME,

PD. Date of birth

(SELECT 'Y'

PROGRAMS P1,.

REGN_PERS_DETL SPR1,

PER_DETL PD1

WHERE P1. REGN_ID = R.REGN_ID

AND P1. PROG_CODE = 'add-on '.

AND SPR1. REGN_ID                                     = P1. REGN_ID

AND SPR1. PERS_ID                                     = PD1. PERS_ID

AND SPR1. REGN_ID = R.REGN_ID

AND SPR1. PROG_ID                                     = P1. PROG_ID

AND TRUNC (MONTHS_BETWEEN (TRUNC (SYSDATE), PD1. (Date of birth) / 12) < 1

) 'a child at a young age',

(SELECT 'Y'

PROGRAMS P1,.

REGN_PERS_DETL SPR1,

PER_DETL PD1

WHERE P1. REGN_ID = R.REGN_ID

AND P1. PROG_CODE = 'add-on '.

AND SPR1. REGN_ID                                     = P1. REGN_ID

AND SPR1. PERS_ID                                     = PD1. PERS_ID

AND SPR1. REGN_ID = R.REGN_ID

AND SPR1. PROG_ID                                     = P1. PROG_ID

AND TRUNC (MONTHS_BETWEEN (TRUNC (SYSDATE), PD1. (Date of birth) / 12) < 4

) 'a child at a young age'

REGN R

JOIN THE PROGRAMS P

WE (P.REGN_ID = R.REGN_ID

AND P.PROG_CODE = 'Primary')

JOIN REGN_PERS_DETL SPR

ON (SPR. REGN_ID = R.REGN_ID

AND RPD. PROG_ID = P.PROG_ID)

JOIN THE PD OF the PER_DETL

ON THE (PP. PERS_ID = RPD. PERS_ID);

Table scripts and sample insert statements:

-Registration table

CREATE TABLE REGN

(

KEY ELEMENTARY SCHOOL NUMBER 4/REGN_ID

Reg_case VARCHAR2 (100)

);

INSERT INTO REGN VALUES (1, "Thomas Jr");

INSERT INTO regn values (2, 'Dolores');

INSERT INTO REGN VALUES (3, 'Mike');

-Table of the person

CREATE TABLE PER_DETL

(

PERS_ID NUMBER 4 PRIMARY KEY,

PERSON_NAME VARCHAR2 (100),

DATE OF BIRTH,

TYPE VARCHAR2 (1)

);

-It is the main applicant

INSERT INTO PER_DETL VALUES (1000, 'Thomas Moody', 1 January 1978 ', ');

INSERT INTO PER_DETL VALUES(1001,'Amanda','01-Jan-1988','F');

-This is an infant or requests

INSERT INTO per_detl values(1002,'Lara','01-Jul-2014','F');

INSERT INTO per_detl values (2001, "Lara II", July 1, 2014 ', ');

-primary

INSERT INTO PERS_DETL VALUES(1003,'David','21-Aug-1975','M');

INSERT INTO PER_DETL VALUES(1004,'Julie','31-Jul-1981','M');

-The infant plaintiff

INSERT INTO per_detl values(1005,'Steve','11-Feb-2008','M');

- but primary has no baby or toddler

INSERT INTO PER_DETL VALUES (1006, 'Mike Matson,' 1 January 1980 ', ');

INSERT INTO per_detl values (1007, 'Thomas Moody', 1 January 1978 ', ');

-Table programs

CREATE THE TABLE PROGRAMS

(

KEY ELEMENTARY SCHOOL NUMBER 4/PROG_ID

PROG_CODE VARCHAR2 (10),

REGN_ID NUMBER 4 REFERENCES REGN (REGN_ID)

);

PROGRAMS INSERT INTO VALUES (100, 'Primary', 1);

INSERT INTO PROGRAMS VALUES (101, 'Add-on', 1);

INSERT INTO programs values (102, 'Add-on', 1);

INSERT VALUES INTO PROGRAMS (203, "Primary", 2);

INSERT VALUES INTO PROGRAMS (204, 'Add-on', 2);

INSERT VALUES INTO PROGRAMS (205, 'Add-on', 2);

INSERT VALUES INTO PROGRAMS (300, "Primary", 3);

INSERT VALUES INTO PROGRAMS (301, 'Add-on', 3);

-This is a secondary table that connects programs, regn, per_detail

CREATE TABLE REGN_PERS_DETL

(

KEY ELEMENTARY SCHOOL NUMBER 4/REGN_PERS_ID

REGN_ID NUMBER 4 REFERENCES REGN (REGN_ID),

PERS_ID NUMBER 4 REFERENCES PER_DETL (PERS_ID),

number programs 4 prog_id REFERENCES (prog_id)

);

INSERT INTO REGN_PERS_DETL VALUES(1234, 1,1000,100);

INSERT INTO REGN_PERS_DETL VALUES(1235, 1,1001,101);

insert into regn_pers_detl values(1236, 1,1002,102);

INSERT INTO REGN_PERS_DETL VALUES(1237, 2,1003,203);

INSERT INTO REGN_PERS_DETL VALUES(1238, 2,1004,204);

INSERT INTO REGN_PERS_DETL VALUES(1239, 2,1005,205);

INSERT INTO REGN_PERS_DETL VALUES(1240, 3,1006,300);

INSERT INTO REGN_PERS_DETL VALUES(1241, 3,1007,301);

Thank you Frank and Etbin

Tags: Database

Similar Questions

  • Online web application forms (steps and how)

    Hello guys.
    I hope to get there soon.

    but so far, I still need help you.
    and thanks again

    It's here.

    as part of a group of SET technician I am assigned to take care of the online application form to get the paperwork out of commision.

    the problem is how?
    I have all toolss, dreamweaver, homesite, and a test server.

    I need to some / lots of advice on how to make this project? don't know how to start.

    will I create a form using html first.
    then create a CF code?

    a non-technical group wants a form that goes into a data abse.
    also a printable form (request online like the hard copy.

    How can I start my project?

    are there examples in line or documentation
    on how to do it?

    I guess my question is.
    1. how to break down (career path)
    2. I use CSS
    3. I have oracle in the back-end (I'll start with access)
    4 help me on what aks questions

    Thank you


    Better, you use oracle... An example of form...






















    Name of the applicant (*)
    Email MTABT (*)
    @mtabt.org
    Applicant telephone #*. [e.g. xxx xxx xxxx or xxx-xxx-xxxx]
    Installation (*)


    Department (*)
    Division (*)
    Justification (*)  
    VP approval (*)
    Email MTABT (*)
    @mtabt.org







    Revised (01.28.05)


  • Problem with ReadyNAS Pro2 #26430016

    Hello

    I have two units ReadyNAS Pro2, which I bought new in February 2013 (both are on one Bill). Now SIN has stopped working and I had to create MyNETGEAR account and save product to address demand for guaranteed online for RMA (chassis has 5y hw) support. I discovered that I was unable to insert the defective SIN (error message says it is already registered by the technical support representative), second NAS (which works well) has been saved successfully. I was able to create the http://support.netgear.com/general/contact/default.aspx assistance request later, but it was bad purchase date form. Two days ago and I have had no response from support yet. Yesterday, I posted another request online (date of purchase any problem with recording and evil) and also sent e-mail to [email protected]. No answer yet. How long does it take to get the answer in common? Thank you.

    Hello mdgm,.

    I started this thread because I needed to know, if it is common to not receive email confirmation after a validation form Contact NETGEAR support or mail to netgear support address and how long I have to wait.

    After I filled the application form for support for my camera, I was presented with only - option to continue, I had to call the Netgear Support US - I'm not WE reside and also my English is not perfect. That was why call us was not my preferred option, so I wrote an email. I hope I'll have the answer, but I was wrong. I tried calling the Support of NETGEAR 2 days later, I finally got to go through IVR after many trials. Once that I was connected to support Expert, she said during a call, which provided case that ID does not exist in the system. Probably the case ID I had during the validation of online application before already expired. I told her all the info I wrote in the contact form, and then call interrupted without any solution. I couldn't go through IVR again.

    I was able to solve the problem of registration later by new support online for my second NAS request. After I provided a copy of the invoice, asked me to confirm the date of purchase, and I also had to find no one entered my SIN, because the homeland security policy prohibits the Netgear Support to indicate the name of the person who is registered product (I found it was my colleague, who recorded my NAS rather than his by mistake in the Web management interface). With all that info and fact, I was the sole owner of this SIN, it was possible to link S/N my profile and finally I can continue with the service request for the RMA.

    Thank you.

    MichalB

  • restarted and can not get webcam driver download from Dell website

    I get a pop up window that says "Application cannot be started. Contact the vendor of the application. Show details:

    PLATFORM VERSION INFO
    Windows: 6.1.7601.65536 (Win32NT)
    Common Language Runtime: 4.0.30319.42000
    System.Deployment.dll: 4.6.1055.0 built by: NETFXREL2
    CLR.dll: 4.6.1055.0 built by: NETFXREL2
    dfdll.dll: 4.6.1055.0 built by: NETFXREL2
    c:\windows\syswow64\dfshim.dll: 4.0.41209.0 (hand. 041209 - 0000)

    SOURCES
    The deployment URL: smartsource.dell.com/.../SmartSource.MediaManager.application
    Server: Microsoft-IIS/7.5
    X-Powered-By: ASP.NET

    IDENTITIES
    Deployment identity: SmartSource.MediaManager.application, Version = 1.1.0.116, Culture = neutral, PublicKeyToken = 284413f54ba8b684, processorArchitecture = msil

    SUMMARY OF THE REQUEST
    * Online only application.
    * Trust url parameter is defined.
    SUMMARY OF THE ERROR
    Here is a summary of the errors, the coordinates of these errors are later in the newspaper.
    * Activation of smartsource.dell.com/.../SmartSource.MediaManager.application resulted in exception. The following failure messages were detected:
    + Activation failed.
    + The system cannot find the specified file. (Exception from HRESULT: 0 x 80070002)

    COMPONENT TRANSACTION FAILURE SUMMARY STORE
    No transaction error.

    CAVEATS
    There are no warnings during this operation.

    STATUS OF OPERATION
    * [06/05/2016 15:51:53]: activation of the smartsource.dell.com/.../SmartSource.MediaManager.application began.
    * [06/05/2016 15:51:53]: treatment of the finished deployment manifest.

    ERROR DETAILS
    The following errors were detected during this operation.
    * [06/05/2016 15:51:53] System.Deployment.Application.DeploymentException (Activation)
    -L'activation failed.
    -Source: System.Deployment
    -Stack trace:
    at System.Deployment.Application.ComponentStore.ActivateApplication (DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
    at System.Deployment.Application.SubscriptionStore.ActivateApplication (DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
    at System.Deployment.Application.ApplicationActivator.Activate (DefinitionAppId appId, appManifest AssemblyManifest, String activationParameter, Boolean useActivationParameter)
    to System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation (activationUri Uri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String & errorPageUrl)
    at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker (Object state)
    -The inner Exception-
    System.IO.FileNotFoundException
    -The system cannot find the specified file. (Exception from HRESULT: 0 x 80070002)
    -Source: System.Deployment
    -Stack trace:
    to System.Deployment.Application.NativeMethods.CorLaunchApplication (hostType UInt32, String applicationFullName, Int32 manifestPathsCount, String [] manifestPaths, Int32 activationDataCount, String [] PROCESS_INFORMATION processInformation, activationData)
    at System.Deployment.Application.ComponentStore.ActivateApplication (DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)

    STORE THE TRANSACTION DETAILS PANE
    * Operation [2016/06/05 15:51:53]
    + System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata
    -Status: value
    -HRESULT: 0 X 0
    + System.Deployment.Internal.Isolation.StoreTransactionOperationType (27)
    -HRESULT: 0 X 0

    Here is where I tried to download it from: https://smartsource.dell.com/web/main.aspx


    It comes to my Dell XPS L502X system

    I try to get my webcam doesn't work after my reboot.

    I tried to download

    Reference Dell Webcam Central 2.00.44 01/07/2011

    Please help it is very frustrating

     

    Sorry... I have several tasks simultaneously and typed the wrong thing... I wanted to recreate the image.

    but I thought that what happened... my thought for some reason antivirus program any, that it was a bad file, so I took out quarantine and it worked.

  • 80004003 - open movie file is not exposed to do for tomorrow

    I hope someone can help me - I can't open movie file I worked on... I have a slide show for the work it takes to do I downloaded on a disk.  Here is the link: https://onedrive.live.com/redir?resid=42E15119C0709E9D%21106

    I tried to send the request online at Microsoft technical support, and I just don't spent more than an hour on the phone only to find out there is no support for this issue.

    Any help would be greatly appreciated!

    (Moved to programs)

    Hello

    I apologize for the delay in response. Please write us with the following details.

    (1) what is the type of file you want to open?

    (2) what app do you use to open the file?

    (3) what is the exact full error message?

    If you are facing this problem while opening the file using Windows Movie Maker then I suggest you follow the steps in the link below.

    How can I fix a Movie Maker project file?

    http://Windows.Microsoft.com/en-za/Windows-Live/Movie-Maker-fix-project-file

    We need details posed above to help you with this problem.

  • Cannot save the new DA with Cisco Smart Net Total Care

    I get the following error when configuring a Director of several browsers. I also cleared my browser cache.  Any ideas to go beyond this issue?

    "We encountered an error while processing your request. Please refresh this page or try again. »

    It was first recording attempt of DA, but group account has been used and we got after the support response:

    Thank you for your request to become a Managing Director for Smart Net Total Care. Unfortunately, this application using what appears to be a shared account. Cisco access policy requires that each account is associated with a single person, and this policy must be strictly applied when this account is used to manage access to other accounts. Smart Net Total Care registration must be performed by a competent person, using their individual Cisco.com account that clearly identifies them by name. Please re - submit a new registration request online by using your individual Cisco.com user ID. Once this request is received, we will proceed with your Smart NET Care total integration.

    Maybe there's some cleaning must be performed in the database before the client can retry to register?

    Best regards

    Resad

  • Recoverable space

    I have fdund this request online.

    pages value 50000 lines 32767

    Select owner, table_name, round ((blocks*8), 2). ' Ko ' 'Fragmented size', round ((num_rows*avg_row_len/1024), 2). ' Ko '

    "Actual size", round ((blocks*8), 2)-round ((num_rows*avg_row_len/1024), 2). ' Ko ',.

    ((round ((blocks*8), 2)-round ((num_rows*avg_row_len/1024), 2)) / round (NULLIF (blocks, 0) * 8, 2))

    ) * 100 - 10 '% space recoverable' from dba_tables where OWNER = "DATA_INTEGRATION."

    Here are the results.

    OWNER TABLE_NAME fragmented real size ROUND ((BLOCKS*8), 2)-ROUND ((NUM_ROWS * AVG_RO espace récupérable %))
    ------------------------------ ------------------------------ ------------------------------------------ ------------------------------------------ ------------------------------------------ --------------------
    DATA_INTEGRATION DI_APRIMO_LABEL_CONFIG 72 Ko Ko 69,73 2.27 KB - 6.8472222
    DATA_INTEGRATION DI_CONTACT_DELTA_EMAIL 32 KB 10,55 21.45 KB 57.03125 KB
    DATA_INTEGRATION DI_APRIMO_ACTIVITIES 144 k k 190, 32-46, 32 k - 42.166667
    DATA_INTEGRATION DI_ACTIVITY_INTERACTION 288KO 393.5 KB - 105, 5 KB - 46.631944
    DATA_INTEGRATION DI_APRIMO_ETL_STAGING Ko 40 Ko 40 Ko 0 90
    DATA_INTEGRATION DI_APRIMO_EMAIL_SEND_STAGING 0 0 0kb KB KB
    DATA_INTEGRATION DI_CONTACT_DELTA_CHANGES 5000kb 65,21 KB 4934,79 KB 88.6958
    DATA_INTEGRATION DI_CAMPAIGN_TARGETS_DELTA Ko 1438432 ko 4.17 1438427.83 Ko 89.9997101

    8 selected lines.

    Can someone explain which would result in negative numbers for some tables. In addition, the query can be modified to find the reclaiimable space > N %) or 25%)

    Negative numbers are generated when the fragmented space figure is less than the number of actual space:

    SYS WRI$ _OPTSTAT_HISTHEAD_HISTORY 4608 KB 4338,05 KB 269,95 kb -4.1417
    SYS WRI$ _OPTSTAT_HISTGRM_HISTORY 6320 KB 5874,79 KB 445,21 KB -2.9555

    This can happen even with current statistics.

    Yes, the query can be modified tables only report where recoverable space is > [a few percent]:

    pages value 50000 lines 32767
    column owner format a35
    column table table_name format a35
    column 'Fragmented size' format a20
    column 'Size' real format a20
    size of column 'object' format a20
    column format 'Space recoverable %' 990.9990

    Select owner, table_name, 'Fragmented size', 'Real size', 'the object's size', 'space recoverable % '.
    Of
    (select
    owner,
    table_name,
    NVL (Round ((blocks*8), 2), 0) |' Ko ' "fragmented size."
    NVL (Round (((num_rows*avg_row_len)/1024), 2), 0) |' Ko ' "actual size."
    NVL (Round ((blocks*8), 2)-Round (((num_rows*avg_row_len)/1024), 2), 0) |' Ko ' 'size of the object. "
    NVL (((Round ((blocks*8), 2)-Round (((num_rows*avg_row_len)/1024), 2)) / round (NULLIF (blocks, 0) * 8, 2)) * 100 - 10.0) 'space recoverable % '.
    from dba_tables
    where the OWNER as upper ('& owner'))
    where "Reclaimable recoverable space %" > & percent;

    David Fitzjarrell

  • Two horizon view infrastructure and a vcenter

    Hi guys,.

    I have not found the information in the guide to validate this installation (installation of two horizon and a vcenter)

    Only indication is for the composer, where it is suggested to use a vcenter for a composer, but in my idea I have no delivery VM with the composer.

    No idea how to find trust information this configuration?

    Thank you.

    Fabio

    Hello Fabio.

    What do you mean by "Installation of two horizon."

    Do you mean multiple connections servers or really 2 different environments.

    I'm making an assumption you mean 2 different environments.

    Yes it is possible I think to use 2 composers with 1 vcenter.

    Just install the composers on a different machine than Virginia and I advice to use different accounts.

    Keep in mind the limits of the composer vmware VMware Documentation Library not to overload your vcenter

    Is it supported any idea that I should advice he not except for a migration and even then, I'll ask the support vmware for more information.

    If you want hard confirmation I would suggest opening a ticket with vmware support VMware - how to file a support request online | United States of America.

    Kind regards

  • MySQL stored procedure syntax errors

    I have a request online, I want to use transactions either commit all updates of db or anything. The code I created is as follows, not only am I getting an error of syntax on lines 5 and 16, but frankly I do not know that the code is really going to do what I want. Please let me know if you see syntax errors and explain them.

    CREATE PROCEDURE increase_maint_priority
        (maint_item INT, new_priority INT, cur_priority INT, center_id INT)
     
    BEGIN
        START TRANSACTION; -- line 5 syntax error
        -- start updates
        UPDATE maintitem SET priority = (priority+1) 
            WHERE priority > cur_priority
            AND priority <= new_priority
            AND centerID = center_id;
            
        UPDATE maintitem SET priority = new_priority
            WHERE id = maint_item;
        
        COMMIT;
    END; -- line 16 syntax error
    

    Thank you in advance for helping a newb to stored procedures.

    If you want to help me to know if this code will actually work for what I want, that the following describes the situation.

    Main idea: business location apply for maintenance at their Center. Applications can be added anywhere in the list of priority (1 = highest priority). They can also change the priority of an application at any time.

    Previously I was using php to control a loop of update mysql queries (ouch, I know now, 2 sql statements could do the trick) and we live lately priorities in double, and other problems which seem to be very likely related to the update of the priorities of several elements.

    Ex: moving priority 6 to priority 1 requires 1 update query because the current priority of the 6th point, but a second query (or loop of several others since I am very new to the drafting 2 years ago sql statements) to update the other priorities.

    Thus, the desire for transaction method.

    Once again, thanks in advance for any help on this matter.

    PS - I use MySQL workbench to write this and it's where to find errors.

    I do not use MySQL and its syntax is slightly different from the other DBMS stored procedures. In all cases, once you eliminate the warning, you also add a handler to ensure that updates roll back in case of error:

    http://khanrahim.WordPress.com/2010/05/16/transaction-with-stored-procedure-in-MySQL-serve r.

  • The button behavior

    I have a request online at http://chaz45.com/main26a.html with 4 buttons on the left side.  The first three buttons work fine.  The fourth button to select a php application that loads a form of contact.  For some reason when this button is clicked by the user, it does not react like the others.  If you move the mouse button after clicking on it, the page loads, but when you initially click the button and the mouse is still hovering above him, he does nothing.  If you move the mouse pointer while hovering always on the button (after you have clicked on it), the button moves several times.  The buttons are "button" objects in flash and the 'down' for each button state includes a slightly updated the X and is coordinate the button to show the movement when you click on it.  Here is the code AS 2.0 for the site.  Any help would be appreciated.

    ****************************************************************************************** *****************************

    main26a.fla ActionScript:

    Stop();
    -IMPORT-------.
    Import mx.transitions.Tween;
    Import mx.transitions.easing. *;

    // ---- INIT ----- \\
    endY var: number;
    background_mc._y = songlist_btn._y - 3;
    var soundPress:Sound = new Sound();
    soundPress.attachSound ("click1");
    booking var = " " http://www.chaz45.com/booking.html ";

    -FUNCTIONS-------.

    -function moveBox is located in # on the layer 'box '. \\
    function moveBox (endY) {}
    background_mc._alpha = 100;
    new Tween(background_mc,"_y",Strong.easeOut,background_mc._y,endY,20,false);
    }

    function buttonTweens() {}
    new Tween(songlist_btn,"_y",Bounce,songlist_btn._y,255.15,5,false);
    new Tween(events_btn,"_y",Bounce,events_btn._y,344.65,5,false);
    new Tween(media_btn,"_y",Bounce,media_btn._y,437.30,5,false);
    new Tween(booking_btn,"_y",Bounce,booking_btn._y,529.95,5,false);
    }

    -ROLLING EVENTS-------.
    songlist_btn.onRollOver = function() {}
    moveBox (songlist_btn._y - 3);

    }

    events_btn.onRollOver = function() {}
    moveBox (events_btn._y);

    }

    media_btn.onRollOver = function() {}
    moveBox (media_btn._y);

    }

    booking_btn.onRollOver = function() {}
    moveBox (booking_btn._y);

    }

    -CLICK EVENTS-------.
    songlist_btn.onPress = function () {}
    soundPress.start ();
    background_mc._alpha = 0;
    }

    events_btn.onPress = function () {}
    soundPress.start ();
    background_mc._alpha = 0;
    }

    media_btn.onPress = function () {}
    soundPress.start ();
    background_mc._alpha = 0;
    }

    booking_btn.onPress = function () {}
    soundPress.start ();
    background_mc._alpha = 0;
    }

    songlist_btn.onRelease = function () {}
    getURL ("http://www.chaz45.com/htdoc/songlist.html","_self");
    }

    events_btn.onRelease = function (): Void {}
    getURL ("http://www.chaz45.com/htdoc/events.html","_self");
    }

    media_btn.onRelease = function () {}
    getURL ("http://www.chaz45.com/htdoc/media.html","_self");
    }

    booking_btn.onRelease = function () {}
    / / getURL ("http://www.chaz45.com/scripts/contact.php","_self");
    }

    / * / - Music control-------.
    var songPosition:Number = song.position;
    var song: Sound = new Sound();
    song.attachSound ("song1");
    song.setVolume (80);
    Song.Start ();


    this.musicPlayer_mc.stop_mc.onRelease = function () {}
    songPosition = 0;
    Song.Stop ();
    }

    this.musicPlayer_mc.play_mc.onRelease = function () {}
    songPosition = song.position;
    Song.Start (songPosition);
    }

    this.musicPlayer_mc.pause_mc.onRelease = function () {}
    songPosition = song.position;
    Song.Stop ();
    }

    this.musicPlayer_mc.volDown_mc.onRelease = function () {}
    If (song.getVolume () > 0) {}
    song.setVolume (song.getVolume () - 10);
    }
    }

    this.musicPlayer_mc.volUp_mc.onRelease = function () {}
    If {(song.getVolume (< 100))
    song.setVolume (song.getVolume () + 10);
    }
    */

    ****************************************************************************************** *******************************

    The content of the contact.php that is executed when the user clicks the Contact button is lower at: *.

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    < html >
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    < title > Contact Chaz45 form < / title >
    < style type = "text/css" >
    {body
    background-color: #BA8201;
    }
    < / style >
    < link href = "" / style1.css "rel ="stylesheet"type =" text/css"/ >"
    < / head >

    < body >
    < div align = "center" >

    < div align = "center" >
    Contact of CHAZ45 page < h1 > < / h1 >
    < / div >

    < div align = 'center' id = 'allow' >
    " < a href =" http://www.chaz45.com/main.html "> Home < /a > .
    " < a href =" http://www.chaz45.com/Songlist.html "> Songlist < /a > .
    " < a href =" http://www.chaz45.com/events.html "> < /a > events .
    " < a href =" http://www.chaz45.com/media.html "> < /a > media .
    Contact
    " < a href =" http://www.chaz45.com/booking.php "> < /a > booking .
    < / div >


    < div align = "center" >
    < h4 > Chaz45 book for an event, click < a href = "booking.php" > here < /a > < / h4 >
    < / div >

    < are method = "post" action = "contactemail.php" >

    <! - DO NOT change THE php sections - >
    <? PHP
    $ipi = getenv ("REMOTE_ADDR");
    $httprefi = getenv ('HTTP_REFERER');
    $httpagenti = getenv ("HTTP_USER_AGENT");
    ? >

    < input type = "hidden" name = "ip address" value = "<?" PHP echo $ipi? ">" / >
    < input type = "hidden" name = "httpref" value = "<?" PHP echo $httprefi? ">" / >
    < input type = "hidden" name = "httpagent" value = "<?" PHP echo $httpagenti? ">" / >


    Your name: < br / >
    < input type = "text" name = 'visitor' size = '35' / >
    < br / >

    Your Email: < br / >
    < input type = "text" name = "visitormail" size = "35" / >
    < br / >
    < br / >

    Subject: < br / >
    < select name = "topic" size = "1" >
    < OPTION SELECTED VALUE = "General information" > select... < / OPTION >
    "< option value =" General information "> General information < / option >".
    "< option value =" booking "> booking < / option >".
    "< option value =" other "> other (Please specify) < / option >".
    < / select >
    < br / >

    < input type = "hidden" name = "othersubject" size = "35" / >

    <? PHP echo $subject;

    $('#othersubject').val('3');

    If ($subject = 'Other') {}
    $othersubject (type) = "text";
    //}

    echo $othersubject;

    ? >

    < br / > < br / >

    Message:
    < br / >
    < name textarea = 'notes' ranks = "4" cols = "40" > < / textarea >
    < br / >
    < input type = "submit" value = "Send email" / >
    < br / >
    < / make >

    < / div >
    < / body >
    < / html >

    ****************************************************************************************** *****************************

    Content of the file resulting (contactemail.php) that sends the message: *.

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    < html >
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    < title > Chaz45 send Contact Email Script < /title >
    < / head >
    < body >

    <!-reminder: Add the link to the 'next page' (bottom)->
    <!-reminder: "YourEmail" change to your real email->

    <? PHP

    $visitor = $_POST ['visitor'];
    $visitormail = $_POST ['visitormail'];
    $subject = $_POST ["subject"];
    $othersubject = $_POST ['othersubject'];
    $visitormsg = $_POST ['notes'];

    $todayis = date ("' l, F j, Y, g: i a '");

    $subject = ("New site Web Chaz45 message");

    $message = "$todayis [CSE] \n".
    From: $visitor ($visitormail) \n
    Message: $visitormsg \n
    ";
    Do not remove the previous line!

    $from = "from: $visitormail\r\n";


    mail ("[email protected]", $subject, $message, $from);

    ? >

    < p align = "center" >

    Date: <? PHP echo $todayis? >
    < br / >

    Thank you: <? PHP echo $visitor? > (<? php echo $visitormail? >)
    < br / >

    Object: <? PHP echo $subject? > (<? php echo $othersubject? >)
    < br / >

    Message:
    <? PHP $notesout = str_replace ("\r", "" < br / > ", $visitormsg");
    echo $notesout;? >
    < br / >

    Your message has been sent.

    < br / > < br / >
    " < a href =" http://chaz45.com/contact.php "> < /A > contact .

    " < a href =" http://chaz45.com/main.html "> Home < /a > < /p > .

    < / body >
    < / html >

    Make sure your textfield is not selectable.

  • Very strange problem

    I am an oracle & problem of ASP developer who is new to db2 and Coldfusion.
    Here's my code for fusion of passes, as it exists now

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    "< html xmlns =" http://www.w3.org/1999/xhtml "> "

    < cfquery 'mth' datasource = name = "jconnect" >
    Select mths_2, l2famt from pflow.leases where lease_id = 100 < / cfquery >

    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = iso-8859-1 "/ >"
    < title > Untitled Document < /title >

    < / head >

    < body >



    < cfoutput > TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT < / cfoutput >
    < br / >
    < cfoutput query = "mth" > #mths_2 # < / cfoutput >
    < br / >
    < cfoutput query = "mth" > #l2famt # < / cfoutput >


    < / body >
    < / html >

    I hace been trying to get a stored procedure to work and it does not display the content, so I tried to make a request online
    hoping to understand what is happening. This isn't a cache problem and I was remove pages and put a new page on the site as you can see the WWWWWWWWWWWW make their appearance then TTTTTTTTTTTT is asked in the page. Also reference a variable that is not yet on the page, but it is a column in the row. (see above).

    I use DB2 v9 and CF MX7running on the same server

    any help woould be appreciated

    WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
    The web site, you access has met an unexpected error.
    Please contact the site administrator.

    The following information is for the creation of Web sites for debugging purposes.
    Error occurred while processing request
    Variable MTHS_1 is not defined.

    The error occurred in C:\Inetpub\wwwroot\iahome\test.cfm: line 27

    25: < cfoutput > TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT < / cfoutput >
    26: < br / >
    27: cfoutput query = "mth" > #mths_2 # < / cfoutput >
    28: < br / >
    29: cfoutput query = "mth" > #l2famt # < / cfoutput >

    Resources:

    * See the ColdFusion documentation to verify that you are using the correct syntax.
    * Search the Knowledge Base to find a solution to your problem.

    Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; RV:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
    Remote address 192.168.100.185
    Referrer
    Date/time 22 February 07 12:48
    Stack trace
    to cftest2ecfm118845366.runPage(C:\Inetpub\wwwroot\iahome\test.cfm:27)

    coldfusion.runtime.UndefinedVariableException: Variable MTHS_1 is not defined.
    at coldfusion.runtime.CfJspPage._get(CfJspPage.java:221)
    at coldfusion.runtime.CfJspPage._autoscalarize(CfJspPage.java:928)
    to cftest2ecfm118845366.runPage(C:\Inetpub\wwwroot\iahome\test.cfm:27)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
    at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
    at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
    at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
    at coldfusion.filter.ClientScopePersistenceFilter.invoke (ClientScopePersistenceFilter.java:2 8)
    at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
    to coldfusion. CfmServlet.service (CfmServlet.java:107)
    at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
    at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
    at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
    at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
    to jrunx.scheduler.ThreadPool$ DownstreamMetrics.invokeRunnable (ThreadPool.java:318)
    to jrunx.scheduler.ThreadPool$ ThreadThrottle.invokeRunnable (ThreadPool.java:426)
    to jrunx.scheduler.ThreadPool$ UpstreamMetrics.invokeRunnable (ThreadPool.java:264)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    In the CF administrator, in the settings section, there is a checkbox "Save."
    class files. Uncheck the box. Delete all files in the WEB-INF/cfclasses
    dir. restart CF. Retest.

    --
    Adam

  • convert the data in the rows into columns

    Hello
    my table structure in this
    Emp_id          loancode           interest         principal
       1                   003                  12               1000
       1                   004                  12               2000
       2                   007                  16               2500
    The same employee might have to take two loans.i different need to display every ready as a separate... column detail like
    Empi_id          soc_code           loancode003     interestforloancode003  principal_for_loancode003     loancode004   i
     
    
    int_004   principal_for_loancode004
    I need to break all the different emp_id and soc_code (from another table)

    pls help


    Kind regards

    The WITH clause is called subquery factoring (http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_10002.htm#i2077142)

    It is used to create tables of nickname, roughly the same as using inline views in the query.

    for example, it's the same thing...

    SQL> ed
    Wrote file afiedt.buf
    
      1  select decode(tp,1,'Op/Bal','Cl/Bal') as type
      2        ,max(case when period = 'JAN' and rn=1 then decode(tp,1,opn_bal,clo_bal) end) as Jan1
      3        ,max(case when period = 'JAN' and rn=2 then decode(tp,1,opn_bal,clo_bal) end) as Jan2
      4        ,max(case when period = 'JAN' and rn=3 then decode(tp,1,opn_bal,clo_bal) end) as Jan3
      5        ,max(case when period = 'FEB' and rn=1 then decode(tp,1,opn_bal,clo_bal) end) as Feb1
      6        ,max(case when period = 'FEB' and rn=2 then decode(tp,1,opn_bal,clo_bal) end) as Feb2
      7        ,max(case when period = 'FEB' and rn=3 then decode(tp,1,opn_bal,clo_bal) end) as Feb3
      8  from (select period, opn_bal, clo_bal, row_number() over (partition by period order by opn_bal) rn from dta),
      9       (select rownum as tp from dual connect by rownum <= 2)
     10* group by tp
    SQL> /
    
    TYPE         JAN1       JAN2       JAN3       FEB1       FEB2       FEB3
    ------ ---------- ---------- ---------- ---------- ---------- ----------
    Op/Bal       2000       2200       2300       5000
    Cl/Bal       3000       3300       3400       4500
    
    SQL>
    

    Simply, it makes it more tidy code and allows the same sets of data to be referenced multiple times in a query without duplicating the request online.

    It is also useful to create sets of dummy test data to use (you will see people on the forum to use for that) so that we don't have to create tables in our database just to test with.

  • How to remove the resources displayed in the output of crs_stat t

    We have 2 node rac Oracle Database 10 g Enterprise Edition Release 10.2.0.3.0 on solaris.

    and crs_stat t ouput is as below
    $ crs_stat t
    Name Type State target host
    ------------------------------------------------------------
    ORA.dealsdb.db online sdcdbc02p online request
    ORA... b1.inst sdcdbc01p online application
    ORA... b2.inst sdcdbc02p online application
    ORA.preqdb.db online sdcdbc01p online request
    ORA... b1.inst sdcdbc01p online application
    ORA... b2.inst sdcdbc02p online application
    ORA.proddb.db online sdcdbc02p online request
    ORA... b1.inst sdcdbc01p online application
    ORA... b2.inst application OFFLINE OFFLINE
    ORA... 1 P. LSNR apply online sdcdbc01p online
    ORA... 01. GSD apply online sdcdbc01p online
    ORA... 01P.ons online sdcdbc01p online request
    ORA... 01. VIP request online sdcdbc01p online
    ORA... 2 p. LSNR apply online sdcdbc02p online
    ORA... 02P. GSD apply online sdcdbc02p online
    ORA... 02P.ons online sdcdbc02p online request
    ORA... 02P. VIP request online sdcdbc02p online


    How can I remove this resource
    ORA... b2.inst application OFFLINE OFFLINE

    Kind regards
    Yasser.

    Yasser,

    Duplicate resource can be removed using crs_unregister.
    I have the same problem with double earpiece that i deleted using crs_unregister.

    crs_unregister ora.testrac1p.LISTENER_RACDB_TESTRAC1P.lsnr
    crs_unregister ora.testrac2p.LISTENER_RACDB_ TESTRAC1P.lsnr

    It is the same for any other resource as well.
    Here you can see step by step... [crs_unregister | http://dba-onweb.blogspot.com/2009/01/rac-crs-crsunregister.html] > as you can see this is the duplicate resource...
    http://DBA-onweb.blogspot.com/2009/01/RAC-CRS-crsunregister.html

  • Discoverer more relational - could I change sql queries?

    Hello
    I work with 10.1.2.1 Oracle Business Intelligence, and I have a relational data source that is a source of organized data in ROLAP.
    Because the requirements of the query rewrite, I have to be able to design sql queries manually, IE I have to join on all enties for example.
    Is there a way to indicate the discoverer and to use a specific query - designed manually - by me (as I can do in reports)?
    many reservoirs,
    Aurel

    Hello

    Finder can handle the request online in a custom folder, so I don't think that's the problem. It could be because the org_dim and time_dim tables do not have an owner at the front and must be SSB.org_dim and SSB.time_dim. It could be that the administrator user did not have the privilege to see these paintings.

    The file will be grayed in Discoverer Plus until it is validated.

    Rod West

  • The MGP Apply mode / 'write' for the selected users?

    Is there a work around to implement the mode of MGP Apply / 'write' for the selected users? The reason is that we have registered who transact only the request online. In this case, they don't need to synchronize. Manually change the ALL_CLIENT$ CAN. OUTQUEUE_DIRTY to ' has only a temporary effect and would normally return to 'Y' after a user made another transaction online. Please advice.

    If you have users who just order updates, then why do need to be put in place in the mobile app? they still appear in synchronization history? If this isn't the case, then I suggest that you just drop them from the mobile server because they have no need for the application lite oracle, just access to the server application.

    Regarding updates to direct data to the tables of mobile repository then (although not recommended), normally they don't cause problems, but would bypass in some cases associated with the transformation.

    If you change the param_value in c$ all_subscription_parameters, then the new setting of subsetting to take effect. However, if you do the same action via mobile manager, it also triggers a reset (if used) customer zero, assignment of new values in sequence and re-evaluation of the list of items of publication associated with c$ all_client_items - these products of two change would be lost if you just update the data in the table

Maybe you are looking for

  • I need of a converted vi from LabVIEW 8.6 9.0 or 7.1

    I have a few screws that need to be saved to an earlier version. This is version 9.0 and I need them to the 8.6 to open. It would be better if I could bring in 7.1.

  • DV7 Bios Reset password

    Hello In order to change some settings in the BIOS permanently this time at startup: I forgot the password of the administrator of my BIOS on my HP Pavilion DV7 4050ED. At the start I'm pressing the esc key, then F10 and DV7 then asks me to enter the

  • How to convert the Cluster chain

    Here's a VI to convert all the data to a string, and the VI to convert the string to a Variant.  The variant of the data function will convert to your data type.  I use LV 8.2, please rate if this helped you. Thank you. -Branson

  • How you can set column headers

    Right-click on your desktop and select new folder. Open that folder and there is by default the column headings of ' name, Date modified, Type and size. When you are in music, images or any other type of file you now have the default column headings.

  • Envy 17 2180el can I add a second hard drive, and then choose bios/boot of the system with which to start?

    Envy 17 2180el can I add a second hard drive, and then choose bios/boot of the system with which to start? in the case give me the link of a hard disk of type to add