Table with multiple partitions

Hello

I've got a big look up postcodes dimension table:

create table zip (from_zip number(5), to_zip number(5));


It's almost 1 billion record table and the content of the table is:

from_zip: it has all postal codes in the United States, about 40,000 nationwide).

to_zip: it lists all zip codes to 400 miles of the zip code in the from_zip column.

I need to run a query such as:

select a.* from TRX_TABLE a, ZIP where a.ZIP = ZIP.TO_ZIP
where from_zip = 10001;


I only provide a zip code in where clause above. Because the ZipCode table is so great, I thought that the best way to partition the table zip by list (from_zip) so that a single partition will contain a zip code of from_zip. This would create about 40 000 partitions since there are 40 000 postal codes in the United States. And since I only provide a zip code in the where clause, it would only be to access a zip. Is 40 000 partitions too? Exceeds the appropriate design? Would it be useful to have a local index on to_zip? the TRX_TABLE has about 10 million documents.

Y at - it an easy way to create a partition for each zip or do I have to list each of the zip codes in the partitions?

Help, please.

41004 projection in accordance with (the United States) is a coordinate system where the coordinates are projected on a plan, coordinates x, Y in meters. Sorry I didn't say that. The sdo_dim_array must therefore:

MDSYS. () SDO_DIM_ARRAY

MDSYS. SDO_DIM_ELEMENT ('X', - 20000000.0, 20000000.0, 1),

MDSYS. SDO_DIM_ELEMENT('Y',-20000000.0, 20000000.0, 1))

These ranges of X and there are enough to cover almost everyone and are what we use for in my work projected coordinate systems. A tolerance of 1 meter (a little more than a yard) seems fine for your application. 50 even would be OK for you.

Create the actual error of your index finger is hidden in the Middle "ORA-13375: the layer is of type [2002] while inserted geometry has type [2001]"-J' made a mistake and stuck in the bad example for the spatial index. "" I'm sorry. A few points of index

CREATE INDEX xxx_SPIND ON xxx (COORDINATES) INDEXTYPE IS MDSYS. SPATIAL_INDEX PARAMETERS ('layer_gtype =POINT');

To convert the long/lat 41004 use:

sdo_cs. Transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (v_long, v_lat, NULL), NULL, NUll), 41004)

To use SDO_WITHIN_DISTANCE to 41004, you give a unit type or give the distance in meters. 1 mile = 1609.344 Mr. (we went metric in the 1970s here in Australia, so I'm comfortable in both).

Here is an example that I did to make sure I had not missed anything else.

create table t_point (name varchar2 (20) null, mdsys uncoordinated.) SDO_GEOMETRY);

insert into (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID) user_sdo_geom_metadata

values ('T_POINT', 'Contact INFORMATION', MDSYS. SDO_DIM_ARRAY (MDSYS. SDO_DIM_ELEMENT ('X', - 20000000.0, 20000000.0, 1),

MDSYS. (SDO_DIM_ELEMENT('Y',-20000000.0, 20000000.0, 1)), 41004);

insert into t_point values ('HOME', sdo_cs.transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (-96,23, NULL), NULL, NULL), 41004));

insert into t_point values ('1', sdo_cs.transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (-96,24, NULL), NULL, NULL), 41004));

insert into t_point values ('Hemisphere.2', sdo_cs.transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (-96,25, NULL), NULL, NULL), 41004));

insert into t_point values ('NORTH3', sdo_cs.transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (-96,27, NULL), NULL, NULL), 41004));

create index t_point_spind on t_point (coordinates) INDEXTYPE IS MDSYS. SPATIAL_INDEX PARAMETERS ('layer_gtype = POINT');

-Request less than 100 miles - search 2 points

Select * from t_point

where sdo_within_distance (coordinates, sdo_cs.transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (-96.1,22.9, NULL), NULL, NULL), 41004))

'unit = mile = 100 distance') = 'TRUE ';

- Or giving counters:

Select * from t_point

where sdo_within_distance (coordinates, sdo_cs.transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (-96.1,22.9, NULL), NULL, NULL), 41004))

'distance =' | TO_CHAR (100 * 1609.344, '99999999')) = "TRUE";

-Interview to 200 miles

Select * from t_point

where sdo_within_distance (coordinates, sdo_cs.transform (SDO_GEOMETRY (2001, 8307, SDO_POINT (-96.1,22.9, NULL), NULL, NULL), 41004))

'unit = distance = 200 mile') = 'TRUE ';

Kind regards

David

Tags: Database

Similar Questions

  • Gears - error when you try to insert values into a table with multiple columns

    Hello

    I started playing with the gears and SQlLite today and I get an error when I try to insert values into a table with multiple columns.

    I have:

    var db = google.gears.factory.create('beta.database');
        db.open('developerSet');
        db.execute('create table if not exists Developers (DeveloperName text, DeveloperAge int)');
    
        var devName = "Davy"
        var devAge = 32;
    
        try {
            db.execute('insert into Developers values (?, ?)', [devName, devAge]);
            alert('success');
        }
        catch (e) {
            alert(e);
        }
    

    I get the error:

    net.rim.device.api.database.DatabaseException; insert into developers values (?,?): SQL logic error or missing database.

    I use this reference: http://code.google.com/apis/gears/api_database.html

    Everything works if I have only one field as:

    var db = google.gears.factory.create('beta.database');
        db.open('developerSet');
        db.execute('create table if not exists Developers (DeveloperName text)');
    
        var devName = "Davy"
        var devAge = 32;
    
        try {
            db.execute('insert into Developers values (?)', [devName]);
            alert('success');
        }
        catch (e) {
            alert(e);
        }
    

    I use the plug-in Visual Studio 2.0 for 2008 that are running Windows XP SP and Simulator 2.13.0.56

    Thank you

    Davy

    Yes, a SQLite database will persist between battery pulls.  The database is registered either to internal MEM or removable media (not the device memory), depending on which is available on your device.

    In general, its not considered a best practice to remove your table as soon as it is empty and re - create it again when you want to add data.  This adds extra overhead fresh for the final, delete and insert first for a given table.  Instead, define and finalize your drawing before you create your table.  Once created, review the static schema.

    That being said, for development purposes, it may be easier to provide an easy way to drop your tables while you develop your schema.

    See you soon,.

    Adam

  • Export a table with name partition with a:

    Hey all, I feel so stupid to ask this Q, but take my injured brain. M trying to export a table (mgmt) in the schema of a g 10 DB with 'User' partition name: "2010-05-30 00:00". Now, I know that for the export of a partition we use - schemaname.tablename:partition_name

    Try various options but unable to load the Exp utility to ignore the ":" itself is a part of the name of partition

    the user/pswd = user.mgmt exp tables: '2010-05-30 00:00 ' compress = n
    user/pswd exp tables = user .mgmt: 2010-05-30\ 00\:00 compress = n
    the user/pswd = exp tables use. "" Mgmt:2010 - 00\:00 05 - 30\ "compress = n
    the user/pswd = exp tables use. ' Mgmt:2010 - 05-30 00:00 "compress = n

    And that's why I either errors such as:
    . . export of table MGMT
    EXP-00051: '2010-05-30' - in view of the partition or subpartition name doesn't do not part of the table "mgmt".
    EXP-00011: user.00 does not exist
    EXP-00051: "00" - given name of partition or subpartition not part of the table "00".

    Or:

    EXP-00019: failure of the treatment of parameters, type 'HELP EXP = Y' help
    EXP-00000: export completed unsuccessfully

    I feel that I m missing something simple but not able to find out. Try these links to find clues, but did not help
    http://download.Oracle.com/docs/CD/B10501_01/server.920/a96652/CH01.htm#1005947
    http://download.Oracle.com/docs/CD/B10501_01/server.920/a96652/CH01.htm#1006395

    I can't give even just take an export of the entire table since it has more than 30 scores and size of the dmp will be huge :(

    I see that your partition name contains white space, it seems that your main problem escapes reserved characters and spaces.
    In your case, you need to escape to the void of the name of the partition part.
    Use this settings file and you should be fine:

    exp.par table of contents:

    file=exp_1tabs_sample.dmp
    log=exp_1tabs_sample.log
    tables=user.mgmt:"2010-06-11 \ 00:00"
    compress=n
    

    Cheers.

  • Declare a type of table with multiple columns

    I have a table with a column of type, and I want to create one with two columns.

    My type is:
    create or replace type "NUMBER_TABLE" in the table of the number;

    And I use it in function:

    FUNCTION GetValues()
    return NUMBER_TABLE
    as
    results NUMBER_TABLE: = NUMBER_TABLE();
    Start
    Select OrderId bulk collect in: results from (select * from tbl_orders);
    -Other code...
    end;

    I want select it be like this:
    Select OrderId, OrderAddress bulk collect into: results from (select * from tbl_orders);

    How to do this?

    Is that what you are looking for:

    CREATE OR REPLACE TYPE two_col_rec AS OBJECT (empno NUMBER, ename VARCHAR2(10))
    /
    
    CREATE OR REPLACE TYPE two_col_table AS TABLE OF two_col;
    /
    
    CREATE OR REPLACE FUNCTION GetValues RETURN two_col_table AS
       results two_col_table := two_col_table();
    BEGIN
       SELECT two_col(empno, ename) BULK COLLECT INTO results FROM emp;
       --
       RETURN results;
    END;
    /
    show errors
    
  • can bind us a single external table with multiple files in OWB 11 g?

    Hello

    I wanted to ask if it is possible to link an external table with several source files in same or different places? Or an external table must be bound to a single source file and one place.

    Thanks in advance,
    Ann.

    Published by: Ann on October 8, 2010 09:38

    Hello Ann,.

    Can you please help me by telling me the steps to achieve this.

    Right-click on the external table in the project tree, from the menu choose Configure.
    then open right clock the node data files dialog Configuration properties and choose from the menu - Create
    you will get a new record for the file - name of file data property

    Also the link of the OWB user guide
    http://download.Oracle.com/docs/CD/B28359_01/OWB.111/b31278/ref_def_flatfiles.htm#i1126304

    Kind regards
    Oleg

  • Indexing of a table with multiple indexes

    Hi all

    I just used the detector of Ridge VI on table 1 d with a threshold.  I now have an array of index I need to round to use as a real index.  My question is, with this index corresponding to the points picture, how, I take the peak values

    To give a bit of context:

    1. I have three time correlated signals.  I filter them, normalize, then add them so that I can increase the signal-to-noise ratio.

    2 pic DetectionVI gives me a table where are these pics

    3. I want my end result

    A. Signal1 [peak_indices]

    B. Signal2 [peak_indices]

    C.Signal3 [peak_indices]

    Now I think about it in the way I have d code in MATLAB which is much easier, but I would like to do this in Labview and would be very happy to any idea.

    Thank you

    -Joe

    As you said, once you have rounded tip to the nearest value locations you have an array of markings. From there on, it should be a simple matter of passing this table in a for loop that auto-index of the results that you went out to generate a table of peak values.

  • Can I get the Win 7 on a hard drive with multiple partitions without erasing all the data on the disk

    I have a HP p6310f with a 1 TB hard drive partitioned into two partitions.  One I have a Win 7 OS, which becomes more and more corrupt.  I would get a new version on the other partition and keep the old version until I don't know that I have restored all the programs and data properly, just in case I need something and are struggling to rebuild.  Is this possible?  When I tried to install the recovery disks, they said that the entire disk, not just the score, would be erased.  This seems a bit silly, but I am very worried about losing key information and programs that I am not able to restore.

    Hello

    If you use HP recovery disks to reinstall the operating system, you are right that they reformatted the whole HARD drive before installing the operating system.  As far as I know, has no way around that.  The only thing I can suggest is to make sure that you are able to get the installers of any program that you need before you restore the PC and maybe do two backup copies of all your personal data, just to be sure.

    On the link below, just select your operating system (Windows 7 32 bit or 64 bit) and verify that you are able to download the drivers and software you need before you reinstall it.  You can always save installers for a writable DVD etc. now and then just to run it from the disk when you want to reinstall.

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?LC=en&DLC=en&cc=us β = en & product = 4107914 & 〉

    I hope this helps.

    Best wishes

    DP - K

  • Select all / all - check the boxes in a table with multiple lines

    Adobe Livecycle Designer ES2

    Hello

    I have several boxes that I need to do a check of all the option for. I work but this is inneficient and much time given the number of times it needs to be done. I need like 5 of these per page, 20 lines per page, 10 pages per document and about 7 total documents: S

    During the click event of the box has the following code:

    If (this.rawValue is '1')

    {

    Form1.facility.Table6.row2.Subform7.pharmacy1.RawValue = '1';

    Form1.facility.Table6.Row3.Subform7.pharmacy2.RawValue = '1';

    <>...

    }

    on the other

    {

    Form1.facility.Table6.Row2.Subform7.pharmacy1.rawValue = '0';

    Form1.facility.Table6.Row3.Subform7.pharmacy2.RawValue = '0';

    <>...

    }
    The name 'subform7' does not change, table 6 made but I can always rename the rest of them, does not change form1, installing Exchange (and not only facility1, installation2... etc, has no guaranteed).
    With the help of this hierarchy is there a better way to check these? Here's what I was playing around with, but it did not work:
    for (var in form1.facility.Table6 myRows)
    {
    Renamed all to be 'pharmacy '.
    myRows.Subform7.pharmacy.rawValue = '1';
    }
    If anyone can shed some light it would be great.

    You use formCalc and lines should be renamed so that LCD shows them as Row [0], row [1], row [3]... etc. in the hierarchy tab

    I'm a little confused by the subform residing on a table row - although it is possible to do. So, I guess it's okay. A good way to ensure that you have the good SOM for the checkbox control is to CTRL-click one of these check boxes while your cursor is in the Scrpt Editor.

    Good luck!

  • Exchange a partition with another partition

    Hi all
    version: 10.2.0.4
    Operating system: Solaris

    I created a partition table with the partition scheme of Range_List.
    Date range (good day) and list subpartition on type,
    According to the company, keep the last 6 months given in this table.
    We plan to check-in of the table and the next month, we'll add all the partitions in a month at a time and we will drop the month of start of the table, so that we can keep 6 months given in the table.
    Therefore, we expect that we will create an empty archive partitioned table same as prod table and swap partition of each day of prod table table archives.

    What we can do as
    let say I have partitions as
    table T:
    PART1
    PART2
    PART3
    Table of archives: T_ARCHIVE
    PART1
    PART2
    PART3

    If I want to exchange of prod part1 partition table (T) to part1 table archives (T_ARCHIVE), we need to use the intermediate table to obtain the records of prod part1 table (T) by trade and this staging table to table archives once more by trade.

    So my question is as

    is it possible to partition constituency of my table of prod to the table of archives directly without the use of any intermediate table. ??

    Thank you very much
    KVM

    NO.

  • Unique table with several columns or several tables split?

    What is the best.

    A table with multiple columns inside or divided into several tables. Why?
    How will the performance in the two scenarios?

    Hello

    user13024762 wrote:
    I have a table EMP that has column EMP_ID, EMP_NAME MGR_ID, MGR_NAME, SALARY, EXP_IN_MNTHS, EXP_IN_YRS... etc with multiple columns

    I have the following tables
    EMP-> EMP_ID, EMP_NAME

    Each row in the table emp thie represents a separate employee. I guess other columns in the emp table might be birth_date, social_security_number and status (by example, 'Active', 'Leave', 'complete'). Here's what an employee has (at least) one of. If there is a one-to-many relationship between an employee and an attribute, then you probably want another table for this attribute.

    BISHOP-> EMP_ID, MGR_ID, MGR_NAME

    There is a one-to-many relationship between employees and managers? In other words, an employee may have 2 or more managers? If Yes, then you need another table.
    If there is only a one-to-one relationship between employees and managers (in other words, if an employee is never more than 1 Manager) so why don't you just have a mgr_id column in the emp table?
    Managers are also used for? (This is often the case, as in scott.emp and hr.employees.) If so, do not store their names in the EME and tables of mgr. Store name (and date of birth and other information) in the table emp only and, if you need a table of Bishop, just the emp_id and mgr_id column.

    SAL-> EMP_ID, SALARY

    There is a one-to-many relationship between the employees and wages? In other words, an employee may have 2 or more treatments? If so, how will you use the values? Is a special treatments in some way, as it will be used more often than others? (In other words, you may have a current and past wages salary, but the last wages are rarely used.)
    If you never have more than 1 salary for a given employee, why not just have a sal column in the emp table?

    EXP-> EMP_ID, EXP_IN_MNTHS, EXP_IN_YRS

    There is a one-to-many relationship between the employees and what whether you store in this table?

    etc. with more tables

    What is the best based on

    (1) performance and data recovery
    (2) ease of use
    (3) maintainability

    A one-to-many relationship requires an additional table. If an employee can have up to 3 managers, don't have mgr1, mgr2 and mgr3 columns in the emp table. Use a separate table, with up to 3 lines for the same employee, instead.
    For 1-1 relationships, it is usually best to not have separate tables.

  • date max with multiple joins of tables

    Looking for expert advice on the use of max (date) with multiple joins of tables. Several people have tried (and failed) - HELP Please!

    The goal is to retrieve the most current joined line of NBRJOBS_EFFECTIVE_DATE for each unique NBRJOBS_PIDM. There are several lines by PIDM with various EFFECTIVE_DATEs. The following SQL returns about 1/3 of the files and there are also some multiples.

    The keys are PIDM, POSN and suff

    Select NBRJOBS. NBRJOBS.*,
    NBRBJOB. NBRBJOB.*
    of POSNCTL. Inner join of NBRBJOB NBRBJOB POSNCTL. NBRJOBS NBRJOBS on (NBRBJOB. NBRBJOB_PIDM = NBRJOBS. NBRJOBS_PIDM) and (NBRBJOB. NBRBJOB_POSN = NBRJOBS. NBRJOBS_POSN) and (NBRBJOB. NBRBJOB_SUFF = NBRJOBS. NBRJOBS_SUFF)
    where NBRJOBS. NBRJOBS_SUFF <>'LS '.
    and NBRBJOB. NBRBJOB_CONTRACT_TYPE = 'P '.
    and NBRJOBS. NBRJOBS_EFFECTIVE_DATE =
    (select Max (NBRJOBS1. NBRJOBS_EFFECTIVE_DATE) as 'EffectDate '.
    of POSNCTL. NBRJOBS NBRJOBS1
    where NBRJOBS1. NBRJOBS_PIDM = NBRJOBS. NBRJOBS_PIDM
    and NBRJOBS1. NBRJOBS_POSN = NBRJOBS. NBRJOBS_POSN
    and NBRJOBS1. NBRJOBS_SUFF = NBRJOBS. NBRJOBS_SUFF
    and NBRJOBS1. NBRJOBS_SUFF <>'LS '.
    and NBRJOBS1. NBRJOBS_EFFECTIVE_DATE < = to_date('2011/11/15','yy/mm/dd'))
    order of NBRJOBS. NBRJOBS_PIDM

    Welcome to the forum!

    We don't know what you are trying to do.
    You want all of the columns in the rows where NBRJOBS_EFFECTIVE_DATE is the date limit before a given date (November 15, 2011 in this example) for all rows in the result set with this NBRJOBS_PIDM? If so, here is one way:

    with         GOT_R_NUM     as
    (
         select       NBRJOBS.NBRJOBS.*,
                NBRBJOB.NBRBJOB.*     -- You may have to give aliases, so that every column has a unique name
         ,       rank () over ( partition by  NBRJOBS.NBRJOBS_PIDM
                                   order by      NBRJOBS.NBRJOBS_EFFECTIVE_DATE     desc
                          )             as R_NUM
         from          POSNCTL.NBRBJOB NBRBJOB
         inner join      POSNCTL.NBRJOBS NBRJOBS       on    (NBRBJOB.NBRBJOB_PIDM = NBRJOBS.NBRJOBS_PIDM)
                                            and      (NBRBJOB.NBRBJOB_POSN = NBRJOBS.NBRJOBS_POSN)
                                      and      (NBRBJOB.NBRBJOB_SUFF = NBRJOBS.NBRJOBS_SUFF)
         where       NBRJOBS.NBRJOBS_SUFF             != 'LS'       -- Is this what you meant?
         and        NBRBJOB.NBRBJOB_CONTRACT_TYPE   ='P'
         and       NBRJOBS.NBRJOBS_EFFECTIVE_DATE  <= to_date ('2011/11/15', 'yyyy/mm/dd')
    )
    select       *     -- Or list all columns except R_NUM
    from       GOT_R_NUM
    where       R_NUM          = 1
    order by  NBRJOBS_PIDM
    ;
    

    Normally this site does not display the <>inequality operator; He thinks it's some kind of beacon.
    Whenever you post on this site, use the other inequality operator (equivalent), *! = *.

    I hope that answers your question.
    If not, post a small example of data (CREATE TABLE and INSERT, only relevant columns instructions) for all the tables involved and the results desired from these data.
    Explain, using specific examples, how you get these results from these data.
    Always tell what version of Oracle you are using.
    You will get better results faster if you always include this information whenever you have a problem.

  • Possible to Exchange temporary table with composite range-hash partitioned table?

    Hello

    Using oracle 11.2.0.3

    We want to clean up the data in some of our existing partitioned table.

    Afetr updates check spped that is too slow for us.

    Current table is partitioned the inetrval compoiste range-hash table.  Also it is compressed - enabled for compression of basis as well

    An interval of 1 month and 1 partition by month and 4 secondary partitions in the partition of ecah.

    You want to create tenp table with the data of celan and exchange the data in this table in the 'dirty' uisng existing partitions partition exchnage.

    Is this possible?

    The plan is

    1) create temporary table containing data for 1 partition (1 month worth of data)

    (2) clean the data here

    (3) create new temporary table with these specific data which compressed and discovered partitioned with 4 secondary partitions

    (4) table 3 for swap partition dirty using partition excahnge.

    Thaks

    I think that this can be done with a combination of Exchange and Split partition partitions. Prior to Oracle 11 g, only way of redefining tables online was DBMS_REDEFINITION package. Now, you can redefine the use of partitions for Exchange & Split. Check

    http://www.Oracle-base.com/articles/Misc/partitioning-an-existing-table-using-Exchange-partition.php

    Maintenance of Partitions

    Kind regards

  • DB update multiple records in a table with a form

    I'm developing an online proofing system that displays a number of images and then allow the client to approve each image, but also to comment.

    I currently have a configuration table with the different elements (an image dynamically takes its name, details about the image and the required form fields). See this Image for layout

    I would then apply a repeat region (the number of signs vary) and you want to update all records with feedback from the customer and approval with a single form. How this is done? I downloaded a trial of the Toolbox for developers, but the documentation is horrible. I'd be willing to buy an extension that will allow, as appropriate.

    I found an extension that does this in two minutes:

    http://www.WebAssist.com/Professional/products/ProductDetails.asp?pid=117

    Great software, highly recommended. Easy to figure out and got this "problem" solved quickly.

  • How to create multiple partitions to the boot camp windows 10?

    Hello

    I have a Macbook pro 2015 with 1 TB of HDD and installed 10 windows on it using boot camp with a size of 500 GB for windows.

    Now can I do 500 GB in three to leave different using "Disk management" on windows?

    If I do that it will cause problems?

    harshav339 wrote:

    Hello

    I have a Macbook pro 2015 with 1 TB of HDD and installed 10 windows on it using boot camp with a size of 500 GB for windows.

    Now can I do 500 GB in three to leave different using "Disk management" on windows?

    If I do that it will cause problems?

    -on-Windows-disk-for-Bootcamp-OS-x http://superuser.com/questions/944815/is-is-possible-to-have-multiple-partitions

  • Indicator of waveform data dashboard with multiple locations

    I have a chart in waveform with multiple locations on my main VI running.

    I use the Application Dashboard data 2.2.1 on my Ipad to monitor table of wave shape of my running app.  I placed a marker on my Ipad and also related waveform with my waveform array variable.  I can't play my data dashboard application because it shows unable to connect to the server.  I noticed that it is because of multiple plots being plotted on my table of waveform.

    I could only play the App data dashboard when it is just a single parcel related to an indicator on the App.

    My question is if it's possible to have a graphical indicator of waveform on a data dashboard that has several plots being plotted and not only a single square, and how to configure it?

    Thank you.

    Click on Bravo and select as an accepted answer.  You are welcome.

Maybe you are looking for

  • How to reinstall Mac OS 10.5.8 on my PGG4 without DVD

    My 10 year old and 2 month old PowerBook G4 (12 ") is a dream machine!  I'm going to retire it soon but my wife and I use it for lots of emails and others.  Until about a month when the screen went crazy - menus turning green and opaque...  BUT now,

  • Shortcut to Voice Dialer

    Hello Y at - it a physical, external shortcut to the voice dialer on the Cliq? On many phones, you need to just press and hold the green button to launch, but like the Cliq is default this key I do not know what is the shortcut. I guess there will be

  • How can I activate the automatic updates on if she doesn't let me do this in Control Panel?

    My security alerts Windows says that my automatic updates are disabled. He tells me that I can go to control panel, system, click Automatic updates and click OK. When I return to the Security Center, it always says that the automatic updates are disa

  • How can I get rid of a divided e-mail screen and return to the full e-mail to read mail?

    How can I restore screen to full screen to read my emails?  It's now a screen divided into two!  Also, when sending an outgoing e-mail it warns me "pop error 3" & tells me letters 'no.'      What does that mean???   Pleeeeazzzzzzze help! ??

  • Check the number of non zero values in each row

    HelloI have the following tablecreate the table attbon as(Select pryear 2014, 1 empid, to_date('21/11/2014','dd/mm/yyyy') prdate, 12 prmonth, 3 shortleave union double all theSelect double union all the 12 prmonth 2014 pryear, 1 empid, to_date('22/11