Display distinct Master values when using Detail Ordering

Hi People,
I need to be able to produce a report in the following form
Dept Empno
RESEARCH 7369
SALES 7499
7521
RESEARCH 7566
SALES 7654
etc etc
Its basically a Tabular report ordered on Empno BUT without repeating values of Dept when Dname doesn't change. Can anyone tell me how do achieve this?
Regards
Andy

Andy,
then try the following
- build a global variabe myDname via a package spec in reports:
PACKAGE Global IS
myDname varchar2(40):='DUMMY';
END;
- write a format trigger on the field dname:
function F_dnameFormatTrigger return boolean is
begin
if global.mydname = :dname then
     return (FALSE);
else
     global.mydname := :dname;
     return (TRUE);
end if;
end;
This seems to work fine. But pay attention. A format trigger fires every time reports try to format the object. So it's possible, that the trigger fires twice for the object (trigger fires when formatting at the end of the page and the reports recognizes, that for eyample the whole record doesn't fit on the page, so the record (and the field) hat to be formatted on the next page again). You must use a counter in the group (summary column with function count and reset at report) and store and compare this counter together with the dname to be sure. It's not very probable, but possible.
Hope this now helps
regards
Rainer

Similar Messages

  • How do I display the correct value when using SELECT_LIST_FROM_QUERY

    I have an updatable report that displays the possible values for a field.
    I'm using HTMLDB_ITEM.SELECT_LIST_FROM_QUERY, so obviously I have to process the record manually.
    However, I need the trick to display the correct value as selected before processing the records.
    I appreciate your help.
    Thanks
    Juan

    Thank you.
    So, I just need to put the field name in the second argument.
    I have it working now.
    Thanks again
    Juan

  • How to display the master TOC when using Context help in a merged document

    I use Robohelp 10. I have created a large Merged Webhelp project and I have set out the project master with nothing in it other than merged projects place markers.
    This is the layout of the generated projects etc.
    Generate
              Master.htm
                   Redirect.htm  (Home page is a redirect to Project 1 Home Page - not in TOC)
    mergedProjects
              Project1
                  Home Page.htm
              Project2
                   Redirect.htm  (Home page is a redirect to Project 1 Home Page - not in TOC)
              Project3 etc.
                    Redirect.htm  (Home page is a redirect to Project 1 Home Page - not in TOC)
    I can get the help to work great when I call up the master page, which shows the TOC for the whole project and the default home page. And from the breadcrumb the home link goes to the home page and shows the Main TOC
    However when I call a page using context help ID I get a single frame with the selected page. The link to show the TOC shows the TOC but it is the top of the merged project and not the master TOC. The home link in the does display the home page but again the displayed TOC is the one of the current merged project.
    The question is :
    How can I get the Master TOC to show all the time regardless of what page I call using a context ID or how can I create a link that will take me back to the Master TOC?
    I remember when I created a previous help file for chm output I had to modify all the ali files in order for the redirect to work throught the master chm. Surely this is not the case with webhelp?
    TonyC

    I am sorry that I didn't get back to all you guys that took to answering my very promptly. Unfortunately I was not in a position to answer to the suggestions made. as I was away from my computer which had Robohelp on.
    Anyway, I did try a couple of scripts mentioned, but didn't really have any success i achieving what I need to do.
    I set up a redirect which redirected to the main home page. I tried setting the home page in a  main sub-project - so the redirect when from any sub project
    Generate
         Master-project.htm (Home Page = Help_Welcome.htm)
    merged Projects
    SubProject1
                [Home Page =  home_redirect.htm (a redirect see below) ]
         SubProject 2
                [Home Page =  home_redirect.htm (a redirect see below) ]
         SubProject 3
                [Home Page =  home_redirect.htm (a redirect see below) ]
    home_redirect.htm  (a redirect use by sub-topics)
    <!--
       window.location="../../ Help_Welcome.htm ";
    //-->
    //]]></script>
    This setup works fine as long as I call the master page. The TOC is as I would want. However if I call an ID from my application I get the required page to display and I can get the TOC to show. The problem is that the TOC is from the current sub-project and not the master project as I would want.

  • 2012 macbook pro retina display artifacts on screen when using onboard video

    2012 Macbook Pro Retina Display artifacts on screen when using onboard video.
    About a month ago I've noticed these strange artifacts (blocky pixelated looking) running vertically down the screen. It first started when using Safari. Then it started to happen all the time. I turned off the auto switch video in preferences, which I'm assuming forces the computer to use the separate video card and the artifacts go away.
    On top of that issue I also have had the ghosting issue.
    Anyone else have this problem?

    artifacts onscreen could mean a faulty gpu. You said by forcing it on inbuilt gpu you do not find this issue highlights that. Do take it in to apple for service and also tell them of your ghosting issue.
    There are a few retina owners who have faulty gpus.

  • How to update zero to a column value when record does not exist in table but should display the column value when it exists in table?

    Hello Everyone,
    How to update zero to a column value when record does not exist in table  but should display the column value when it exists in table
    Regards
    Regards Gautam S

    As per my understanding...
    You Would like to see this 
    Code:
    SELECT COALESCE(Salary,0) from Employee;
    Regards
    Shivaprasad S
    Please mark as answer if helpful
    Shiv

  • What is the best way to display errors to users when using JSPs?

              Hello,
              Could someone suggest me the best way to display errors to users when using JSPs?
              Many thanks in advance.
              Rino
              

              Thanks for the code snippet!
              Rino
              "Deepak Vohra" <[email protected]> wrote:
              >
              >
              >The 'errorPage' attribute of the 'page' directive forwards uncaught run-time
              >exceptions
              >to an error processing page. For example:
              >
              ><%@ page errorPage="error.jsp" %>
              >
              >redirects the browser to the JSP page error.jsp if an uncaught exception
              >is encountered.
              >
              >
              >Within error.jsp, indicate that it is an error-processing page, via the
              >directive:
              >
              >
              >
              ><%@ page isErrorPage="true" %>
              >
              >The Throwable object describing the exception may be accessed within
              >the error
              >page via the 'exception' implicit object.
              >
              >
              ><% if (exception != null) { %>
              ><p> An exception was thrown: <b> <%= exception %>
              >
              ><p> With the following stack trace:
              ><pre>
              >
              ><%
              > ByteArrayOutputStream ostr = new ByteArrayOutputStream();
              > exception.printStackTrace(new PrintStream(ostr));
              > out.print(ostr);
              >%>
              ></pre>
              >
              >
              >
              >"Rino Srivastava" <[email protected]> wrote:
              >>
              >>Hello,
              >>
              >>Could someone suggest me the best way to display errors to users when
              >>using JSPs?
              >>
              >>Many thanks in advance.
              >>
              >>Rino
              >
              

  • Display Distinct Item Value

    Hello All,
    I am having an problem displaying a distinct value for Item 'PK_EMPL_ID'. I need all the Items below because I am passing these values to another page in APEX. But I need help with this select statement syntax.
    SELECT hs.pk_session_id,
           hsp.pk_session_process_id,
           hs.fk_class_id,
           hsm.pk_empl_id,
           hsm.last_name || ', ' || hsm.first_name studentname,
           dg.department_group_descr,
           pd.department_descr,
           hsm.fk_dept_group,
           hsm.fk_dept_code,
           hsp.fk_empl_id,
           hs.session_meridiem,
           hsn.session_name,
           hs.session_date,
           hsp.session_process_status
        FROM   hrt_session hs,
               hrt_session_name hsn,
               hrt_session_process hsp,
               hrt_student_master hsm,
               cobr.department_group dg,
               cobr.pps_department pd
        WHERE  hsn.pk_session_name_id = hs.fk_session_name_id
           AND hsp.fk_session_id = hs.pk_session_id
           AND hsp.fk_empl_id = hsm.pk_empl_id
           AND hsm.fk_dept_group = dg.pk_department_group_id
           AND hsm.fk_dept_code = pd.pk_department_idMy output is like:
    -PK_EMPL_ID-
    JOHN
    JOHN
    JOHN
    BOBBY
    JAMES
    I only want to display each 'PK_EMPL_ID' value once when the select statement is executed, not duplicate values. I have tried distinct, group by etc... but I am having trouble since I am using multiple tables using these foreign keys. I have viewed a few threads but they are only handling one or two item values from one table. Can anyone assist me with please? Thanks ahead of time.

    Hi,
    Whenever you have a question, post a little sample data (CREATE TABLE and INSERT statements) for all tables, and the results uyou want from that data.
    You may have a clear idea of where you're coming from, and where you want to go, but the description alone doesn't convey that clear idea to us.
    You can also rephrase your question in terms of some commonly available table, like scott.emp.
    For example: "I'm doing this query on scott.emp:
    {code}
    SELECT      job
    ,     deptno
    FROM     scott.emp
    {code}
    How can I get only 1 row per distinct job?"
    Without sample output, the question is still vague.
    There are 14 rows in scott.emp.
    You can reduce the output to 9 rows by changing "SELECT" to "SELECT *DISTINCT* ":
    SELECT DISTINCT
         job
    ,     deptno
    FROM     scott.emp
    ;which produces:
    OB           DEPTNO
    MANAGER           20
    PRESIDENT         10
    CLERK             10
    SALESMAN          30
    ANALYST           20
    MANAGER           30
    MANAGER           10
    CLERK             30
    CLERK             20But that's as far as you can go without changing the results.
    For example, all three departments have MANAGERs. If you want only 5 rows of outptu (one for each of the 5 distinct jobs), then which deptno do you want?
    If you want the lowest one, here's one way to do that:
    WITH     got_rnum     AS
         SELECT     job
         ,     deptno
         ,     ROW_NUMBER () OVER ( PARTITION BY  job
                                   ORDER BY          deptno
                           ) AS rnum
         FROM    scott.emp
    SELECT     job
    ,     deptno
    FROM     got_rnum
    WHERE     rnum     = 1
    ;Output:
    JOB           DEPTNO
    ANALYST           20
    CLERK             10
    MANAGER           10
    PRESIDENT         10
    SALESMAN          30There are other apprioaches to this problem, too. The advantage of this one is that it works well with any number of columns in the output.

  • Firefox 33 doesn't display a pdf file when using the response object

    Firefox 33.0.2 does not display pdf files when using the code below from an asp.net program, which works for previous versions of Firefox, and also works with IE. I'm using the built-in pdf viewer. All of my plugins are disabled.
    Dim strPDF As String
    strPDF = Session("filname") 'pdf filename
    Response.Clear()
    Response.ClearHeaders()
    Response.Buffer = True
    Response.ContentType = "application/pdf"
    Response.CacheControl = "Private"
    Response.AddHeader("Pragma", "no-cache")
    Response.AddHeader("Expires", "0")
    Response.AddHeader("Cache-Control", "no-store, no-cache, must-revalidate")
    Response.AddHeader("Content-Disposition", "inline; filename=" + strPDF)
    Response.WriteFile(strPDF)
    Response.Flush()
    Response.Close()
    Response.Clear()
    Response.End()
    Session("filname") = ""

    Thanks cor-el. You pointed me in the right direction. It appears to me that a reported Firefox 33 bug with the handling of compression (Transfer-Encoding: chunked) is the culprit (https://support.mozilla.org/en-US/questions/1026743). I was able to find a work-around by specifying the file size and buffering. Below is my code, with some code from http://www.codeproject.com/Questions/440054/How-to-Open-any-file-in-new-browser-tab-using-ASP.
    Dim strPDF As String
    strPDF = Session("filname") 'pdf filename
    Dim User As New WebClient()
    Dim FileBuffer As [Byte]() = User.DownloadData(strPDF)
    If Not (FileBuffer Is Nothing) Then
    Response.Clear()
    Response.ClearHeaders()
    Response.CacheControl = "Private"
    Response.AddHeader("Pragma", "no-cache")
    Response.AddHeader("Expires", "0")
    Response.AddHeader("Cache-Control", "no-store, no-cache, must-revalidate")
    Response.ContentType = "application/pdf"
    Response.AddHeader("content-length", FileBuffer.Length.ToString())
    Response.BinaryWrite(FileBuffer)
    Response.Flush()
    Response.Close()
    Response.Clear()
    Response.End()
    End If
    Session("filname") = ""

  • Displaying pdf in browser when using Windows 7 Beta & AR 9

    Early indications are that "Adobe Air" and/or "Acrobat.com" are breaking the display in browser function in Windows 7 Beta when using Adobe Reader 9.
    On a fresh install of Windows 7 Beta, I installed Adobe Reader 9, and as everyone is finding out, you cannot display a pdf in a browser window. Doesn't matter which browser either. IE8, Opera 10a, Mozilla SeaMonkey 1.1.14 had the same result for me. The only workable option was to have the pdf open in a separate window of Adobe Reader itself. Oddly though, on rare occasions I could get a pdf to display in a browser window, but 95% of the time it would not work.
    On another fresh install of Windows 7 Beta, I installed Adobe Reader 9. After installation I opened Adobe Reader and accepted the license agreement, then closed Adobe Reader. Next I uninstalled "Acrobat.com", then uninstalled "Adobe Air" using Programs and Features in Control Panel. So far, I have not had any problem downloading and viewing pdf's in a browser window. Tested with IE8 and Opera 10a. Note that I did not run compatibility mode on Adobe Reader.

    Hi,
    I (April) apologize I have been OOO and have not been able to respond to your replies.  
    Let’s start over. 
    We have an issue where help topics do not display when selected in the TOC or when a link to the topic is clicked within another internal topic. It is in a continous loop in the browser (flickering like it is trying to load). If you right-click on the topic it displays (we are currently using this as the work-around).
    We use Windows 7, IE9 and RH10 for all our projects. (Recently upgraded from RH8 to RH10)
    Turns out the problem is not isolated. I have run across it in at least one other project, which leads me to think it also occurs in others.
    "Does this only occur when the help is called from your software? Is it OK if you double click the start page?"
              No. I it ALSO occurs when launched from the start page. 
    Have you tried deleting the CPD file and reopening Rh and the project?
              Yes, without success.
    Are you using any redirects?    
              Per (Adrienne), “I am not using any redirects. I encounter this issue only in IE. If I paste the .htm into a Firefox browser, the help displays as it should.” 
              I will add that the project also displays incorrectly in Google Chrome.
    Thanks  April

  • How to populate column titles for y values when using Write to Measurement File Express VI with a tab delimited text-based .lvm file?

    The .lvm file generated by the Write to Measurement File Express VI includes column heading titles for the y values, but they are a default value of "untitled".  See attached example of a sample file when opened in Excel, the values in question are highlighted.  Is there a way to specify the column titles when the file is written?
    This is a similar question to this posting, which received a work around response to use the Write to Spreadsheet File.vi, rather than a solution when using this VI.
    Message Edited by Hightop Raven on 05-02-2007 03:37 PM
    Attachments:
    column_titles.gif ‏13 KB

    Sorry for the late reply.  I was out of the office Friday.
    You can do it, but the code can get rather ugly.  Under the hood, the dynamic data type (the dark blue wire) is an array of waveforms.  In your case, the scalar values you convert to a dynamic data type are being converted to an array of waveforms, each waveform having one element.  You have two options.
    Explicitly convert your scalars to one-element waveforms (t0=0, dt=1) and add the title before conversion to a dynamic data type.
    Convert your dynamic data type to an array of waveforms and loop through them to add the column labels.  The conversion blocks are in the Signal Manipulation Express palette.
    I would recommend 2, since it is the easiest to add.  It is also the easiest to run only on the first iteration.  Just put a case selector around the loop, wire the selection to the While loop iterator, and set the case containing the label code to 0.  The default case simply passes through the dynamic data.
    My apologies for not including a screen shot.  I am in the process of upgrading my machine and can't run LabVIEW.  If you need one, let me know and I can post one tomorrow.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Keeping variable values when using an LMS

    I have a program that uses variables for a branching, allowing me to mark what branch the student has completed.  It works when you preview the course.  When I publish to the LMS and take the course it works if I go straight through.  But if I leave the course and then pick it up were I left off the variables that were set showing completion of the course no longer show the completion information.  How can I maintain the variable values when the student exits the course?

    Hi dmv@Morgan and welcome to the forums!
    Here's what I've found to be true for my LMS:
    If you set a default value for the variable in the variables panel, then the variable will be reset to that default value when the course resumes. 
    If you don't set a default value, then the LMS suspend data (aka resume data) will populate the variable with the previous value from the previous attempt.
    Let us know how it goes,
    Jim Leichliter

  • How to delete the master records when corresponding details records exist.

    What is the SQL statement to delete the records of master when the corresponding detail records are present.
    Note: No Cascade clause was used at the time of creation of referential integrity constraint.
    "M"- Master Table
    "D"- Detail Table
    I used, "Delete from M cascade". This statement is not working.
    Your favour in this will be deeply appreciated.
    Cheers
    PremChin

    Hi folk,
    i appreciate your suggestion,
    my crux of the situation is to know whether there is a way to make it without disabling,removing or modifying the referential integrity constraint.
    If so, modifying, please help me out how to modify the constraint in order to remove the master records keeping detail records in-tact.
    Cheers
    Premz

  • LOV Displays the Return Value when Read Only

    Greetings,
    I searched for a question/answer for this, but didn't find this exact scenario mentioned, but I may have missed it. If you know of this already been asked/answered just point me to the thread.
    On APEX version - 4.1.1.00.23
    I have a LOV that is populated by a dynamic action from another LOV. That works great. Depending on the value of another page item the 2nd LOV is Editable or Read Only. The problem is that when the 2nd LOV is Read Only the result value (an ID) displays instead of the display value.
    1 - Why is this?
    2 - How do I prevent this from happening?
    Also, I don't want 2 separate page items (one for edit, one for display) for the 2nd LOV, because the 2nd LOV also has a dynamic action on it to populate a 3rd LOV. The population of the 3rd LOV works great, whether the 2nd LOV is editable or read only.
    = = = = = = = 2nd LOV SQL = = = = = = =
    select sub_com_desc||' - '||commodity_desc d, defect_code_header_id r
    from qcis_defect_code_header
    where inactive_date IS NULL and plant_id = :P10_PLANT_ID
    order by sub_com_desc
    = = = = = = = = = = = = = = = = = = = =
    Thanks, Tony
    Edited by: cloaked on May 8, 2013 12:11 PM

    I've decided to try a different approach. Since the Select List LOV was Read Only and not populating correctly it was causing a session state error when inserting the row. So, I've made the Select List LOV editable, but it shouldn't be. I now need to disable the page item using JavaScript to prevent it from being changed. I need to do so only when a page item contains a certain value.
    Will someone share an example of JavaScript snippet of code I need to use? (I'm not much of a JavaScript coder.)
    The page item I need to disable is named - P10_DEFECT_HEADER_ID
    I need to disable it when P10_MAP_TYPE = 'P'
    Thanks, Tony
    Edited by: cloaked on May 15, 2013 1:00 PM

  • Wrong pricing condition values when using GN_INVOICE_CREATE

    Hi all,
    I am currently handling a program where I have to display all the materials in a given sales area and some corresponding values that depend on pricing conditions. I am using FM GN_INVOICE_CREATE to extract table komv. However, I am experiencing a problem because the values I am getting are different from those in table konv. I am getting the price conditions without the value of field KNUMV.
    I would like to ask if anybody has any idea on how to go about this or maybe another function module that I can use to get the data I need.
    Thanks a lot..
    Regards,
    jac

    Hi,
    Thanks for your reply. I only have the field AUART for checking on the pricing conditions.
    Here is a the part of my code
      CALL FUNCTION 'GN_INVOICE_CREATE'
           EXPORTING
                vbsk_i           = i_vbsk
                id_kvorg        = ''
                id_no_dialog  = c_exis
                invoice_date  = p_datum
                pricing_date  = p_datum
           IMPORTING
                vbsk_e          = i_vbsk
           TABLES
                xkomfk         = i_komfk
                xkomfkgn      = i_komfkgn
                xkomfkko      = i_komfkko
                xkomv          = i_komv
                xthead         = i_thead
                xvbfs           = i_vbfs
                xvbpa          = i_vbpa
                xvbrk           = i_vbrk
                xvbrp           = i_vbrp
                xvbss          = i_vbss
           EXCEPTIONS
                OTHERS       = 1.
    The only parameters in those that have values are c_exis = X, p_datum = given date, and xkomfkgn. The other parameters are all initial when passed to the function module. I get a resulting komv table however, values are incorrect.
    Thanks again for the help..
    Regards,
    jac

  • Problems reading new inputText value when using reRender

    I have a selectOneListbox, when the user selects a certain option, then an inputText box appears for the user to enter data. I have the inputText box appearing & disappearing as it should (based on what the user chooses in the selectOneListbox) using the reRender attribute, but I can't read the value entered in the inputText box properly in the backing bean.
    If I leave the reRender attribute off of the selectOneListbox, then I can read the value from the inputText box, or if I set the catTime property (which controls the reRender attribute) to True in the backing bean, then I can also read the value from the inputText box. But when the catTime property is being changed by the selectOneListbox, the inputText box will display, & I can enter data, but I can't read that data in the backing bean.
    When I try to read the value the user puts in the inputText box, I always get null, instead of the numbers they entered.
    Here's my JSP (I apologize if it doesn't look pretty, I admit this is my first post so I don't know all the tricks yet)
    <a4j:outputPanel id="addNotePanel" styleClass="inputPanel" >
    <a4j:form id="addNoteForm">
    <t:htmlTag value="p" >
    <t:selectOneListbox id="NoteType" value="#{addNoteBean.noteType}" size="1"
    valueChangeListener="#{addNoteBean.checkForCatNote}">
    <f:selectItems value="#{addNoteBean.noteTypes}"/>
    <a4j:support event="onchange" reRender="catTable"/>
    </t:selectOneListbox>
    <t:div id="catTable">
    <t:panelGrid columns="2" columnClasses="smallCol" cellspacing="0"
    cellpadding="0" rendered="#{addNoteBean.catTime}">
    <t:inputText id="catHrs" value="#{addNoteBean.catHrs}"
    binding="#{addNoteBean.catHrsInput}" size="2"
    validator="#{addNoteBean.validateCatHrs}">
    </t:inputText>
    <t:inputText id="catMin" value="#{addNoteBean.catMin}" size="2">
    </t:inputText>
    </t:panelGrid>
    </t:div>
    </t:htmlTag>
    <t:htmlTag value="center" >
    <a4j:commandButton value="Save" id="saveButton" action="#{addNoteBean.addNote}" oncomplete="javascript:closeNote()"
    styleClass="button" style="background-color: #7490CA;"/>
    </t:htmlTag>
    </a4j:form>
    </a4j:outputPanel>
    {color:#ff0000}Here are the relevant parts of the backing bean{color}
    private String catHrs;
    private String catMin;
    private UIInput catHrsInput;
    private UIInput catMinInput;
    private boolean catTime;
    public void addNote() {
    {color:#0000ff}+//currently this only contains code to display catHrs+
    {color}}
    public void checkForCatNote(ValueChangeEvent value) {
    String selectedValue = (String)value.getNewValue();
    if ("K".equals(selectedValue)) {
    catTime = true;
    else {
    catTime = false;
    }//end checkForCatNote
    public void validateCatHrs(FacesContext context, UIComponent component, Object value) {
    String hrs = value.toString();
    catHrs = hrs;
    System.+out+.println("ANB.validateCatHrs hrs=" + hrs + ".catHrs=" + catHrs + ".value=" + value + ".");
    //Getters & setters
    public String getNoteType() {
    return noteType;
    public void setNoteType(String noteType) {
    this.noteType = noteType;
    public String getCatHrs() {
    return catHrs;
    public void setCatHrs(String catHrs) {
    this.catHrs = catHrs;
    public String getCatMin() {
    return catMin;
    public void setCatMin(String catMin) {
    this.catMin = catMin;
    public boolean isCatTime() {
    return catTime;
    public void setCatTime(*boolean* catTime) {
    this.catTime = catTime;
    public UIInput getCatHrsInput() {
    return catHrsInput;
    public void setCatHrsInput(UIInput catHrsInput) {
    this.catHrsInput = catHrsInput;
    public UIInput getCatMinInput() {
    return catMinInput;
    public void setCatMinInput(UIInput catMinInput) {
    this.catMinInput = catMinInput;

    still_learning1 wrote:
    I apologize if it doesn't look pretty, I admit this is my first post so I don't know all the tricks yetWrap your code in code tags. It is available by the CODE button in the message toolbar.

Maybe you are looking for

  • Moving library stored on an external drive to another computer - Help!

    I am currently changing computers. Both are running Windows XP, both are running iTunes 8.0.2.20 On the current computer I have all my music stored on an external drive named L:. I am going to move L: to the new computer and keep it named the same. I

  • IOS 5.1.1 Audio issues iPhone 4

    Hi All- I know there are other people on here experiencing the same issue, but I have yet to find a solution yet. Since upgrading to iOS 5.1.1 I have not been able to get any sustained audio out of the phones speakers. By sustained, I mean that I wil

  • Is there any well designed sample database availabe for download ?

    Hi Thank you for reading my post I get the Oracle Express 10g and now i am looking for a good database with some test data inside it to practice some tuning and sql commands. is there any (rather big ) sample database available for download ? Thanks

  • Apple Remote Desktop 3.0 and OS 10.6.8

    I purchased Apple Remote Desktop 3 several year ago when I was running 10.4.  Last year we got new computers and we are running 10.6.8 now. I tried to load Apple Remote onto my new computer, but it did not work.  It appeared to load, though very quic

  • Prob node root

    Hi, how can i put an attribute to my root node like this? <?xml version='1.0'> <ROOT xmlns = 'schema.xsd'> <------- </ROOT> Thanks