Selecting missing numbers in Range (missing in 1 - 10 )

hello
i want to get missing numbers query in a range like i want query returns only missing numbers between 1 to 10 present in a table
thanks.
Message was edited by:
Rehman

in this case if a change my range from 2 - 11 it does not works. In that case, I would use pipelined function :
SQL> drop table rehman ;
Table dropped.
SQL> create table rehman as
  2  select 1 id from dual union all
  3  select 3 id from dual union all
  4  select 5 id from dual union all
  5  select 7 id from dual union all
  6  select 9 id from dual ;
Table created.
SQL>
SQL>
SQL> create or replace type TblId as table of number
  2  /
Type created.
SQL>
SQL> create or replace function Tbl_rehman(p_start number, p_end number)
  2   RETURN TblId
  3   PIPELINED
  4  IS
  5  BEGIN
  6   FOR x IN p_start..p_end
  7   LOOP
  8       PIPE ROW( x );
  9   END LOOP;
10   RETURN;
11  END;
12  /
Function created.
SQL>
SQL> select *
  2  from   table(Tbl_rehman(1,10)) a
  3  where not exists (select 1 from rehman b where b.id=a.column_value);
COLUMN_VALUE
           2
           4
           6
           8
          10
SQL>
SQL> select *
  2  from   table(Tbl_rehman(2,11)) a
  3  where not exists (select 1 from rehman b where b.id=a.column_value);
COLUMN_VALUE
           2
           4
           6
           8
          10
          11
6 rows selected.
SQL> Nicolas.

Similar Messages

  • CAML query to select data in specfic range

    CAML query to select data in specfic range.
    I have a list-A and it has a column 'Col1' which has thousands records, I want to fetch data in a specific range as:
    select Col1,Col2 from list-A where Col1 > 100 and Col1 < 600

    Hi,
    The following code with the CAML query for your reference:
    using (SPSite site = new SPSite("http://spsite/"))
    using (SPWeb web = site.OpenWeb())
    string sQuery = @"<where><and><gt><fieldref name='Col1' /><value type='number'>100</value></gt><lt><fieldref name='Col1' /><value type='number'> 600 </value></lt></and></where>";
    string sViewFields = @"<fieldref name='Col1' /><fieldref name='Col2' />";
    string sViewAttrs = @"Scope='Recursive'";
    var oQuery = new SPQuery();
    oQuery.Query = sQuery;
    oQuery.ViewFields = sViewFields;
    oQuery.ViewAttributes = sViewAttrs;
    SPList oList = web.Lists["ListName"];
    SPListItemCollection collListItems = oList.GetItems(oQuery);
    foreach (SPListItem oListItem in collListItems)
    More information about the CAML:
    http://msdn.microsoft.com/en-us/library/office/ms467521(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/office/ms462365(v=office.15).aspx
    Here is a tool will help you to build and test SharePoint CAML Queries:
    https://spcamlqueryhelper.codeplex.com/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • WD: Select Options shows empty ranges

    Hi there,
    Im using select options in my wd application... I defined a few fields (numeric, dats and so on).  I was expecting that the select options in wd works like the normal ones in normal abap report.
    But when I try to read the results from select options , the result range table has no sign or option value (low value ok) ... when I reach the result to a Select statement a shortdump happen with the notice there is no sign or option value in the IN parameter of the Selection statement.
    Does any one know if this is standard behavior of WD select options ?

    Hi ,
    try to understand following code .
    METHOD wddoinit .
      DATA:
           lr_componentcontroller TYPE REF TO ig_componentcontroller,
           l_ref_cmp_usage TYPE REF TO if_wd_component_usage.
      DATA:
          lt_range_table       TYPE REF TO data,
          lt_types             TYPE string_table,
          rt_range_table       TYPE REF TO data,
          text                 TYPE string,
          typename             TYPE string.
      DATA: vbeln TYPE lips-vbeln,
            erdat TYPE lips-erdat,
            auart TYPE vbak-auart,
            trnsp TYPE vtadd01t-add_info,
            kunnr TYPE likp-kunnr.
      DATA:
        num_events TYPE i.
      DATA: uname TYPE sy-uname.
      uname = sy-uname.
      wd_context->set_attribute(  name = 'CUSTOMER'
      value = uname  ).
    *  wd_context->GET_ATTRIBUTE( Name = 'TRANSPORTER_CODE'
    *  Value = uname ).
    * create the used component
      l_ref_cmp_usage = wd_this->wd_cpuse_select_options( ).
      IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
    * get a pointer to the interface controller of the select options component
      wd_this->m_wd_select_options = wd_this->wd_cpifc_select_options( ).
    * init the select screen
      wd_this->m_handler = wd_this->m_wd_select_options->init_selection_screen( ).
      lt_range_table = wd_this->m_handler->create_range_table( i_typename = 'VBELN_VL' ).
      wd_this->m_handler->add_selection_field(
        i_description                = 'Sales Document'
        i_id                         = 'VBELN'
        i_obligatory                 = 'X'
        it_result                    = lt_range_table
        i_value_help_structure       = 'LIPS'
        i_value_help_structure_field = 'VBELN' ).
      lt_range_table = wd_this->m_handler->create_range_table( i_typename = 'ERDAT' ).
      wd_this->m_handler->add_selection_field( i_id = 'ERDAT'  i_obligatory = 'X' it_result = lt_range_table ).
    *lt_range_table = wd_this->m_handler->create_range_table( i_typename = 'VTTK_ADD01' ).
    *wd_this->m_handler->add_selection_field( i_id = 'VTTK_ADD01' I_DESCRIPTION  = 'CHAHA' it_result = lt_range_table ).
    *    wd_this->m_handler->add_selection_field(
    *      i_description                = 'Transporters Code'
    *      i_id                         = 'VTTK_ADD01'
    *      it_result                    = lt_range_table
    *      i_value_help_structure       = 'VTADD01T'
    *      i_value_help_structure_field = 'ADD_INFO' ).
    *Supress Global options in Used Component
      wd_this->m_handler->set_global_options(
          i_display_btn_cancel  = ''
          i_display_btn_check   = ''
          i_display_btn_execute = ''
          i_display_btn_reset   = '' ).
      lt_range_table = wd_this->m_handler->create_range_table( i_typename = 'VBAK-AUART' ).
      wd_this->m_handler->add_selection_field(
        i_description                = 'Sales Document Type'
        i_id                         = 'AUART'
         i_obligatory                = 'X'
        it_result                    = lt_range_table
        i_value_help_structure       = 'VBAK'
        i_value_help_structure_field = 'AUART' ).
    ENDMETHOD.
    METHOD onactionexecute .
      DATA: node_saledoc TYPE REF TO if_wd_context_node.
      DATA: node_crdate TYPE REF TO if_wd_context_node.
      DATA: node_transcode TYPE REF TO if_wd_context_node.
      DATA: node_doctype TYPE REF TO if_wd_context_node.
      DATA: node1 TYPE REF TO if_wd_context_node.
      DATA: node2 TYPE REF TO if_wd_context_node.
      DATA: rt_saledoc TYPE REF TO data.
      DATA: rt_crdate TYPE REF TO data.
      DATA: rt_transcode TYPE REF TO data.
      DATA: rt_doctype TYPE REF TO data.
      FIELD-SYMBOLS: <fs_saledoc> TYPE table,
                      <fs_crdate> TYPE table,
                      <fs_transcode> TYPE table,
                      <fs_doctype> TYPE table.
    * Retrieve the data from the select option
      rt_saledoc = wd_this->m_handler->get_range_table_of_sel_field(
      i_id = 'VBELN' ).
    * Assign it to a field symbol
      ASSIGN rt_saledoc->* TO <fs_saledoc>.
    * Retrieve the data from the select option
      rt_crdate = wd_this->m_handler->get_range_table_of_sel_field(
      i_id = 'ERDAT' ).
    * Assign it to a field symbol
      ASSIGN rt_crdate->* TO <fs_crdate>.
    * Retrieve the data from the select option
      rt_doctype = wd_this->m_handler->get_range_table_of_sel_field(
      i_id = 'AUART' ).
    * Assign it to a field symbol
      ASSIGN rt_doctype->* TO <fs_doctype>.
    * Retrieve the data from the select option
    *rt_transcode = wd_this->m_handler->get_range_table_of_sel_field(
    *i_id = 'VTTK_ADD01' ).
    ** Assign it to a field symbol
    *assign rt_transcode->* to <fs_transcode>.
      node_saledoc = wd_context->get_child_node( name = 'S_VBELN' ).
      node_saledoc->bind_table( <fs_saledoc> ).
      node_crdate = wd_context->get_child_node( name = 'S_ERDAT' ).
      node_crdate->bind_table(  <fs_crdate> ).
      node_doctype = wd_context->get_child_node( name = 'S_AUART' ).
      node_doctype->bind_table( <fs_doctype> ).
      IF <fs_doctype> IS NOT INITIAL
        AND <fs_crdate> IS NOT INITIAL
        AND <fs_saledoc> IS NOT INITIAL
        wd_comp_controller->execute_zotddelvnote_vend_tari( ).
      ENDIF.
    ENDMETHOD.
    Regards,
    Amit solanki
    Edited by: Amit Solanki on Aug 19, 2009 11:30 AM
    Edited by: Amit Solanki on Aug 19, 2009 11:32 AM

  • Please select a Numbers document that has one or more named header columns and one or more rows of data.

    This  IS the same error message I keep getting when I try and create labels.  I've done it in the past but this year it won't.  I am using the latest update of Pages and numbers.
    Help??

    Mike,
    Thanks for the question. I hadn't explored this previously.
    You must first create your data table in a Numbers document and save that document. Use a Header Row and place your data descriptions in that row, with your data below.
    Then you create your Pages document with merge fields, but don't format the merge titles yet.
    Now, go to the Pages Link Inspector and Select the Numbers document to merge from.
    One by one, select your merge location text and add to the Merge Field list in the Inspector, selecting the corresponding descriptor in the Numbers table.
    Finally, in Pages, Edit > Mail Merge.
    Here's an example:
    In the screen shot, the Numbers table is in the background, the Pages merge format document is in the foreground, and the result document is at the mid-plane.
    Regards,
    Jerry

  • Query to find first and last call made by selected number for date range

    Hi,
    query to find first and last call made by selected number for date range
    according to filter:
    mobile_no : 989.....
    call_date_from : 25-april-2013
    call_date_to : 26-april-2013
    Please help

    Hi,
    It sounds like you want a Top-N Query , something like this:
    WITH    got_nums   AS
         SELECT     table_x.*     -- or list columns wanted
         ,     ROW_NUMBER () OVER (ORDER BY  call_date      ) AS a_num
         ,     ROW_NUMBER () OVER (ORDER BY  call_date  DESC) AS d_num
         FROM     table_x
         WHERE     mobile_no     = 989
         AND     call_date     >= DATE '2013-04-25'
         AND     call_date     <  DATE '2013-04-26' + 1
    SELECT  *     -- or list all columns except a_num and d_num
    FROM     got_nums
    WHERE     1     IN (a_num, d_num)
    ;This forum is devoted to the SQL*Plus and iSQL*Plus front ends. This question doesn't have anything to do with any front end, does it? In the future, you'll get better response if you post questions like this in the PL/SQL.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the SQL forum FAQ {message:id=9360002}

  • Selecting Missing Days from a given range of Date  from a table

    Dear Oracle Guru's
    Consider the following table
    txndetails
    Rundate date
    Txncnt Number
    userid varchar2(100)
    Data will be as follows
    Rundate txncnt userid
    17-Nov-2009 4 admin
    18-Nov-2009 7 admin
    21-Nov-2009 3 admin
    23-Nov-2009 4 admin
    We populate this table on the basis of txn generated. This is supposed to run daily based on the transactions. Certain days there wont be any transaction at all. hence there will be no entry on this table .
    At any given point of time , we would like to know the days on which there is no entries in this table
    In the above sample data, there is no entries on 19th, 20th and 22nd
    we have to list out those days
    I got confused while trying some methods
    Kindly guide me in this regard
    with warm regards
    Ssr

    Hi,
    As Centinul and Bhushan said, you need a list of all the possible dates; "CONNECT BY LEVEL <= x" is an efficient way to generate such a list in Oracle SQL.
    Once you have the list of all days, you can use MINUS, like Centinul or Bhushan did. You can also use an outer join, as shown below.
    WITH  extrema     AS
         SELECT     TRUNC (MIN (rundate))     AS start_date
         ,     TRUNC (MAX (rundate))     AS end_date
         FROM     txndetails
    all_days     AS
         SELECT     start_date + LEVEL - 1     AS a_date
         ,     start_date + LEVEL        AS next_date
         FROM     extrema
         CONNECT BY     LEVEL <= 1 + end_date - start_date
    SELECT     a.a_date
    FROM          all_days     a
    LEFT OUTER JOIN     txndetails     t     ON     t.rundate >= a.a_date
                                     AND     t.rundate <  a.next_date
    WHERE   t.rundate     IS NULL
    ;Remember that all DATEs include hours, minutes and seconds. In the list of all days that you generate, the hours, minutes and seconds will probably be 00:00:00; be careful if the hours, minutes and seconds in your actual DATEs are not always 00:00:00.
    The query above shows missing dates between the first date that is actually in the table and the last date in the table.
    In practice, most people are interested in a deffierent range, such as all dates between two given parameters, or all dates within the last year.
    If that's the case, you don't need the sub-query extrema; you can use the paremters (or compute the values) in all_days, based on dual.
    For example, to get the most recent 365 days:
    WITH     all_days     AS
         SELECT     TRUNC (SYSDATE) + LEVEL - 365     AS a_date
         ,     TRUNC (SYSDATE) + LEVEL - 364       AS next_date
         FROM     dual
         CONNECT BY     LEVEL <= 365
    SELECT     a.a_date
    ...          -- Same as beforeEdited by: Frank Kulash on Nov 23, 2009 10:54 AM

  • Selecting missing date range with previous records value

    Hello,
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SET DEFINE OFF;
    create table t(NBR_OF_S number, NBR_OF_C number, S_DATE date);
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (34, 40, TO_DATE('05/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (27, 29, TO_DATE('03/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (21, 23, TO_DATE('12/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (19, 20, TO_DATE('10/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (18, 19, TO_DATE('09/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (17, 17, TO_DATE('08/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (16, 16, TO_DATE('06/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (9, 9, TO_DATE('12/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (5, 5, TO_DATE('11/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (2, 2, TO_DATE('01/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    COMMIT;
    SQL> select * from t order by 3 desc;
      NBR_OF_S   NBR_OF_C S_DATE
            34         40 01-MAY-12
            27         29 01-MAR-12
            21         23 01-DEC-11
            19         20 01-OCT-11
            18         19 01-SEP-11
            17         17 01-AUG-11
            16         16 01-JUN-11
             9          9 01-DEC-10
             5          5 01-NOV-10
             2          2 01-JAN-10
    10 rows selected.I want the output like as follows, all those missing date i need to carry on the last one's number
      NBR_OF_S   NBR_OF_C S_DATE
            34         40 01-MAY-12
            27         29 01-APR-12
            27         29 01-MAR-12
            21         23 01-FEB-12
            21         23 01-JAN-12
            21         23 01-DEC-11
            19         20 01-NOV-11
            19         20 01-OCT-11
            18         19 01-SEP-11
            17         17 01-AUG-11
            16         16 01-JUL-11
            16         16 01-JUN-11
             9          9 01-MAY-11
             9          9 01-APR-11
             9          9 01-MAR-11
             9          9 01-FEB-11
             9          9 01-JAN-11
             9          9 01-DEC-10
             5          5 01-NOV-10
             2          2 01-OCT-10
             2          2 01-SEP-10
             2          2 01-AUG-10
             2          2 01-JUL-10
             2          2 01-JUN-10
             2          2 01-MAY-10
             2          2 01-APR-10
             2          2 01-MAR-10
             2          2 01-FEB-10
             2          2 01-JAN-10Any help would be greatly appreciate.
    Note: The date value I have created for this sample is monthly, based on the condition the data value I may need to generate weekly also. That's Monthly or weekly either one
    Thanks,

    And what is AMT? You didn't provide such column in your original post. Anyway, MODEL solution based on original post:
    select  nbr_of_s,
            nbr_of_c,
            s_date
      from  t
      model
        partition by(rowid)
        dimension by(1 d)
        measures(
                 nbr_of_s,
                 nbr_of_c,
                 s_date,
                 months_between(lag(s_date) over(order by s_date desc),s_date) cnt
        rules(
              nbr_of_s[for d from 1 to cnt[1] increment 1] = nbr_of_s[1],
              nbr_of_c[for d from 1 to cnt[1] increment 1] = nbr_of_c[1],
                s_date[for d from 1 to cnt[1] increment 1] = add_months(s_date[1],cv(d) - 1)
      order by s_date desc
      NBR_OF_S   NBR_OF_C S_DATE   
            34         40 01-MAY-12
            27         29 01-APR-12
            27         29 01-MAR-12
            21         23 01-FEB-12
            21         23 01-JAN-12
            21         23 01-DEC-11
            19         20 01-NOV-11
            19         20 01-OCT-11
      NBR_OF_S   NBR_OF_C S_DATE   
            18         19 01-SEP-11
            17         17 01-AUG-11
            16         16 01-JUL-11
            16         16 01-JUN-11
             9          9 01-MAY-11
             9          9 01-APR-11
             9          9 01-MAR-11
             9          9 01-FEB-11
      NBR_OF_S   NBR_OF_C S_DATE   
             9          9 01-JAN-11
             9          9 01-DEC-10
             5          5 01-NOV-10
             2          2 01-OCT-10
             2          2 01-SEP-10
             2          2 01-AUG-10
             2          2 01-JUL-10
             2          2 01-JUN-10
      NBR_OF_S   NBR_OF_C S_DATE   
             2          2 01-MAY-10
             2          2 01-APR-10
             2          2 01-MAR-10
             2          2 01-FEB-10
             2          2 01-JAN-10
    29 rows selected.
    SQL> SY.
    Edited by: Solomon Yakobson on Jun 11, 2012 1:34 PM

  • Selection missing in Dreamweaver CS6

    I'm following the Adobe video tutorial by Adobe Evangelist Paul Trani, entitled "Getting Started with Creating Mobile Apps and Websites with Design and Web Premium CS6." Early in the video, Trani starts out in Dreamweaver with this:
    File > New > Page from Sample > Mobile Starters > jQuery Mobile with theme (phoneGap)
    When he gets to the last selection (jQuery Mobile with theme - phone Gap) it is one of five (5) sample pages to choose from in the video. In my copy of Dreamweaver CS6, however, I only have three (3) sample pages to choose from. They are jQuery Mobile (CDN), JQuery Mobile (Local), and jQuery Mobile with theme (Local). Missing from my selection but shown in the Trani video are "jQuery Mobile (PhoneGap), and jQuery Mobile with theme (PhoneGap).
    At that point, I have to hit the breaks, and Trani just blows on by.
    How can I add the two sample pages to my menu so I can continue this training video?
    Thanks

    @pk4ut You need to select "jQuery Mobile with theme (local). That's the same as using (phonegap). Thanks for watching!
    Paul

  • Scene Selection Missing in Action

    My production of a DVD of movie clips did not successfully include chapters in Scene Selection.
    In iMovie, I highlighted movie clips in the clip viewer and added chapter markers via the button below the Chapters panel. The yellow diamonds showed up in the # column of the Chapters panel but in the timeline panel only at the beginning and end (I think).
    I then “Shared” the iMovie with iDVD. I tried to get a preview of the movie in playback mode, but the Scene Selection button was not active. There was no filled-in yellow circle adjacent to Scene Selection. Pay Movie did have the yellow circle. I burned a disk image anyway and then burned a DVD using Disk Utility. The movie plays but without the Scene Selection working. I am, however, able to “tab” from chapter to chapter with the “virtual remote”
    I must be missing a step. Any ideas?
    I am confused in one other area. When I highlight a clip and click on the Add Marker button, does the chapter marker always go at the beginning of the clip? Somehow I got one to be entered at the end of a clip.

    What you indicate helps. The chapter markers are now shown in the timeline and the Scene Selection in iDVD shows the yellow filled-in circle. But, in Playback mode, clicking on the Scene Selection yellow circle does not allow navigation to the scene menu. The map view show the proper layout, including the 0:00:0 icon for the start. However, the scene selection icon is generic. It does not show my movie. The chapter icons do show my movie. Clcking on the generic scene selection icon does show the selection menu with my movie. And they can be clicked and played.
    Your ideas will be appreciated.

  • Variant selection missing in BEx Broadcaster

    I've created workbook in BEx Analyzer (2004s). Workbook has selection screen. I also created variants for workbook. I then went into BEx Broadcaster to distribute workbook. I don't see option to select variant that I created in Analyzer under workbook precalculation tab. I see only option for variable assignment which ask me to create new assignment.
    I've used information broadcasting 3.5. It has option to enter variant under pre-calculation tab. Any idea why this option is missing in 70 BEx Broadcaster.
    Any help is greatly appreciated.
    Thanks,
    Milind

    Broadcasting workbooks via variants is not available yet in BI 7.0.
    According to version 14.1 (oct. 10) of the Functional Enhancements Schedule for BI this functionality will be delivered in 2nd half of 2008.
    To find the document:
    service.sap.com -> help & support -> release & upgrade info -> upgrade info.
    Then in the navigation pane choose Solution-specific information -> SAP BI upgrade
    The document is called Functional enhancements schedule BI in SAP NetWeaver 7.0
    Check this doc regularly as new versions are uploaded frequently.
    gr,
    W.

  • Provisioning profile select missing in 2.2??!

    I've just upgraded to the 2.2 SDK and the options in the target info screen for selecting a provisioning profile is now missing in all my projects and any new projects I create
    Is it moved? is it a bug? How do I get this option back?

    The "Code signing identity" field and the "Code Signing Provisioning Profile" field have been merged. Click on "Any iPhone device" and there is a drop-down list which combines the company name and the provisioning profiles, so you just need to select your company name under the provisioning profile that you want to use. Hope this makes sense!

  • Background selection missing from Properties inspector in CS6? [subject edited by moderator]

    My BG (Background Insert Image) Selection is missing in the Properties Panel of my new Dreamweaver C6. I just moved up from an earlier version of Dreamweaver which did have it. How can I get the BG Image Insert / change link? Thanks

    Thanks Jon, for your initial help....
    But this isn't doing what I want to do. Both the actions you describe above, adds the background .JPG image to the entire Browser Page background.
    I need to insert / add the JPG image to a "TABLE" element which I am centering in the middle of my home page. You can see it here at: http://www.FastDates.com
    See the background JPG photo of the 3 girls with the motorcycle. I created this with the earlier version of Dreamweaver using the BG (Background Insert Image) function previously seen at the bottom of the Properties box. With the new Dreamweaver I  can not find  how do this again - Change this table background Image. Other than to go into the old page coding and change it there. But this will not help me if I create new pages in the further.
    Here is the coding for that section of the page with the JPG calendar page image I want to change each month - highlighted below darker:
    <body>
    <p align="center">
      <map name="Map2" id="Map2">
        <area shape="rect" coords="361,143,591,281" href="http://www.FastDates.com/FDRP.HTM" />
        <table width="1100" height="1151" border="0" align="center" cellpadding="1" cellspacing="10" background="IndexPhotos/IL15.07.jpg" bgcolor="#FFFFFF">
          <tr>
    I hope this will give you the needed information to help me?
    Thank you! Jim Gianatsis / FastDates.om

  • Why is the "All Movies" selection missing from Purchased Movies on Apple TV?

    THere is no longer an option to search "all" of my Purchased iTunes movies in the Apple TV menu. It was nice to just scroll through all of the movies alphabetically. Now I can only search by ---- RECENT , SHARED, OR BY GENRES. This can sometimes be frustrating because a movie might not be listed in the Genre it Should be I.e. The Outlaw Josey Wales is not listed in Westerns but in Drama , or Big Hero 6 is in Action & Adventure not Kids & Family etc.
    IS there anyway to activate this under some setting , or is it gone for good ? If gone is there a way to petition for the option to be brought back ?

    We're just fellow users here and have no information as to why the episode might be missing, if it is. My guess would be some sort of rights hangup with a guest artist, the episode director, or something like that, but that's just a guess. You can try contacting the iTunes Store and asking:
    http://www.apple.com/emea/support/itunes/contact.html
    but I suspect that they'll have no information, at least none they can make public.
    Regards.

  • "More" tabe and language selection missing from Inspector

    I need to define languages for different cells.
    The help document indicates this is done as in Pages -- selecting the text, choosing the Text tab from the Inspector, selecting the "More" sub-tab, and selecting the appropriate language from the menu.
    However, there isn't a "More" sub-tab on the Text tab of the inspector in Numbers.
    Has anyone located this function someplace else? I've searched and searched and not turned it up so far.
    Apple, if the function isn't there, can you add it in an update??

    The place to ask Apple for an enhancement is in the Numbers menu using "Provide Numbers Feedback". The forums are made up of users like yourself, not Apple personnel.
    As far as I know, there is no way to choose multiple languages in Numbers, it uses your International (Language & Text) preferences.

  • Power Options "Close Lid" selection missing

    I've seen numerous posts all over the Internet about people having the "When I close the lid" option missing from their Power Options in Control Panel, this usually goes hand in hand with the Hibernate tab missing.  I have a user with this issue and I've found no one that has resolved this.  Lenovo, is this something you're aware of?  Do you have a fix?  I have a VP that's ready to switch to HP or Dell because of this issue.  Please let me know if you have any suggestions.
    The model is a T60.

    To make hibernation available, follow these steps:
    Click Start, and then type cmd in the Start Search box.
    In the search results list, right-click Command Prompt, and then click Run as Administrator.
    When you are prompted by User Account Control, click Continue.
    At the command prompt, type powercfg.exe /hibernate on, and then press ENTER.
    Type exit, and then press ENTER to close the Command Prompt window.
    T520 4239-CTO
    T61/p 6459-CTO (Gone but not forgotten)
    A31/p XP Pro 1 gig memory
    A30/p XP Pro 1 gig memory
    TP600 Win 2K 288 mb memory
    701C Win 98 Don't ask

Maybe you are looking for

  • Is there a way to print the pdf documents?

    Hi i have 20pdf files in a folder. i need to pick up all the documents in the folder and sent them for the print. in java how to do this?

  • Problem with N8

    I am facing one problem with Nokia N8. I brought this New Nokia N8 phone from US to India so it is not at all functioning nor responding anything. When I tried to Switch ON this phone it is not responding anything.  Can anybody suggest me what should

  • How to reset my ipad from my computer

    how do i reset my ipad mini cause its been misplaced

  • I need easy audio and video converting and editing software?

    I need easy audio and video converting and editing software that wont cost $400.

  • After Effects CD

    I have purchased in 2009 CS4 collection for Windows. I need to reinstall it on a new computer and I am missing the CD for After Effects. I have the product key. Is there anyway I could download this software from a web site. I know if I could find so