Generate the block number

Hi Experts,

I'm provoding a couple examples of data
with t as
(
select 1 loan_id,'xxx' bn from dual
union all
select 2 loan_id,null borrower_name from dual
union all
select 3 loan_id,null borrower_name from dual
union all
select 7 loan_id,'ac' borrower_name from dual
union all
select 10 loan_id,'ac' borrower_name from dual
union all
select 11 loan_id,null borrower_name from dual
)
select loan_id,bn
from t
/

LOAN_ID BN
---------- ---
         1 xxx
         2 
         3 
         7 ac
        10 ac
        11 
Desired O/p
loan_id   bn    group_no
1          xxx    G1
2                   G1
3                   G1
7         ac       G3
10       ac       G4
11                 G4
So, I try to generate the new column filled with a few unique group_no. A group has the value of loan_ids which are in order.

Ex: loan_ids 1,2,3 are regarded as a single group and 10,11 as another group.

And I made an attempt using lead and the delay of analytical functions.
SQL> with t as
  2  (
  3  select 1 loan_id,'xxx' bn from dual
  4  union all
  5  select 2 loan_id,null borrower_name from dual
  6  union all
  7  select 3 loan_id,null borrower_name from dual
  8  union all
  9  select 7 loan_id,'ac' borrower_name from dual
 10  union all
 11  select 10 loan_id,'ac' borrower_name from dual
 12  union all
 13  select 11 loan_id,null borrower_name from dual
 14  )
 15  select id,bn,(
 16                case when lg = id-1 or ld=id+1 then
 17                'G'
 18                else
 19                'N'
 20                end
 21                )group_no
 22  from
 23  (
 24  select loan_id id,bn,lag(loan_id) over(order by loan_id) lg,lead(loan_id) over(order by loan_id) ld
 25  from t
 26  )
 27  /

        ID BN  GROUP_NO
---------- --- --------
         1 xxx G
         2     G
         3     G
         7 ac  N
        10 ac  G
        11     G

6 rows selected
But its production group_no even for all groups. Experts please help.

Published by: RUSSO Sep 21, 2011 07:55

Or

With tutorial method Tabibitosan by Aketi Jyuuzou

Method Tabibitosan by Aketi Jyuuzou tutorial

WITH t AS
     (SELECT 1 loan_id, 'xxx' bn
        FROM DUAL
      UNION ALL
      SELECT 2 loan_id, NULL borrower_name
        FROM DUAL
      UNION ALL
      SELECT 3 loan_id, NULL borrower_name
        FROM DUAL
      UNION ALL
      SELECT 7 loan_id, 'ac' borrower_name
        FROM DUAL
      UNION ALL
      SELECT 10 loan_id, 'ac' borrower_name
        FROM DUAL
      UNION ALL
      SELECT 11 loan_id, NULL borrower_name
        FROM DUAL)
select loan_id, bn, 'G'||dense_rank()over(order by makegroup) GRP_ID
from (
SELECT   loan_id, bn,
          loan_id - row_number () OVER (ORDER BY loan_id) AS makegroup
    FROM t)
ORDER BY loan_id;

   LOAN_ID BN  GRP_ID
---------- --- -----------------------------------------
         1 xxx G1
         2     G1
         3     G1
         7 ac  G2
        10 ac  G3
        11     G3                                       

6 rows selected.

Tags: Database

Similar Questions

  • How to generate the serial number for the lines of the form. PLEASE HELP GUYS

    I have a tabular presentation. in which I have a column named Serial_number. I want to change the line (by enter or click the mouse) shape is expected to generate automatically in the next serial number.

    Published by: Gul on March 9, 2012 16:09

    Dear Gul

    Create a trigger a TIMES-NEWS-RECORD-INSTANCE at the block level.
    &
    Write the code in the following trigger

    IF: SYSTEM. RECORD_STATUS = 'NEW' THEN
    *: + YOUR_BLOCK_NAME +. SERIAL_NUMBER: =: SYSTEM. CURSOR_RECORD; *
    END IF;

    Hope this can solve your problem.

  • Generate the sequence number

    
    create table t
    (id int primary key,
    dt date,
    file_no int,
    batch_no int,
    data varchar2(5)
    );
    
    insert into t values (1,trunc(sysdate),23,113,dbms_random.string('a',5)); -- 1.1.1
    insert into t values (2,trunc(sysdate),23,345,dbms_random.string('a',5)); -- 1.2.1
    insert into t values (3,trunc(sysdate),23,345,dbms_random.string('a',5)); -- 1.2.2
    insert into t values (4,trunc(sysdate),23,543,dbms_random.string('a',5)); -- 1.3.1
    insert into t values (5,trunc(sysdate),23,543,dbms_random.string('a',5)); -- 1.3.2
    insert into t values (6,trunc(sysdate),23,543,dbms_random.string('a',5)); -- 1.3.3
    --
    insert into t values (7,trunc(sysdate),24,333,dbms_random.string('a',5)); -- 2.1.1
    insert into t values (8,trunc(sysdate),24,333,dbms_random.string('a',5)); -- 2.1.2
    insert into t values (9,trunc(sysdate),24,333,dbms_random.string('a',5)); -- 2.1.3
    insert into t values (10,trunc(sysdate),24,222,dbms_random.string('a',5)); -- 2.2.1
    insert into t values (11,trunc(sysdate),24,222,dbms_random.string('a',5)); -- 2.2.2
    insert into t values (12,trunc(sysdate),24,111,dbms_random.string('a',5)); -- 2.3.1
    
    
    

    Oracle 11.1

    How can given this structure and data, I generate sequence at the end of each line numbers? Basically, the sequence number (x.y.z) is such that x (1.n) is awarded for each unique value in file_no. In each x, y (1.n) is assigned for each unique value of batch_no. Within each y, z (1.n) is assigned for all records of this batch. Sample data shows only dt but all sequences must reset and start over when dt changes.

    I tried using row_number() over (partition by dt, file_no) and such but nothing quite gives me what I'm looking for.

    Help? Thank you

    Hello

    HELEN wrote:

    If you look at my CREATE TABLE, the ID column is a primary key and represents the order of the data in the file.

    Done batch_no = 100 come before or after 101?  Batch_no = 100 a ID so much until after the id for batch_no = 101.

    Good point, but that won't happen because of the way the 'record' is generated. All batch_nos will be contiguous. So if batch_no 100 comes earlier in the file as 101, it should get some 2nd highest sequence number. Otherwise, lower. Basically, the 2nd part of the sequence must simialar logical number to the 3rd party (i.e. order by id) but that messes things. Still struggle with it. Any help appreciated.

    I think I understand.  You say that, because of the way that the ID is issued, it wouldn't matter if you used the highest id of the batch_no, or the lowest id, or the average, or if you chose one at random; you would get the correct order in all cases.

    The following query uses the id low in the order file_no and batch_nos.

    WITH got_min_ids AS

    (

    SELECT id, dt, file_no, batch_no, data

    MIN (id) over (PARTITION BY dt

    file_no

    ) AS min_id_file_no

    MIN (id) over (PARTITION BY dt

    file_no

    batch_no

    ) AS min_id_batch_no

    T

    )

    SELECT id, dt, file_no, batch_no, data

    DENSE_RANK () OVER (PARTITION BY dt

    ORDER BY min_id_file_no

    )

    || '.'

    || DENSE_RANK () OVER (PARTITION BY dt

    file_no

    ORDER BY min_id_batch_no

    )

    || '.'

    || ROW_NUMBER () OVER (PARTITION BY dt

    file_no

    batch_no

    ORDER BY id

    ) AS seq

    OF got_min_ids

    ORDER BY dt, min_id_file_no, min_id_batch_no, id

    ;

    The main request is in fact what I posted before, but instead of

    "ORDER BY file_no" and "ORDER BY batch_no", she uses

    "ORDER BY min_id_file_no" and "ORDER BY min_id_batch_no".  These values are calculated in the subquery, got_min_ids.

    Output (including the additional sample data I posted):

    ID FILE_NO DT BATCH_NO SEQ DATA

    ---------- ----------- ---------- ---------- ----- ----------

    1 23 25 April 2014 113 dXAad 1.1.1

    2 345 23 25 April 2014 pumVG 1.2.1

    3 345 23 25 April 2014 jLnbO 1.2.2

    4 23 25 April 2014 543 xKhCL 1.3.1

    5 23 25 April 2014 543 JQoWk 1.3.2

    6 23 25 April 2014 543 YjJeC 1.3.3

    7 24 25 April 2014 333 WjQNE 2.1.1

    8 24 25 April 2014 333 ScWSL 2.1.2

    9 24 25 April 2014 333 pXDSD 2.1.3

    10 222 24 25 April 2014 OSajn 2.2.1

    11 222 24 25 April 2014 QNpix 2.2.2

    12 24 111 OwkjI 2.3.1 April 25, 2014

    91 100 99 25 April 2014 sRWmT 3.1.1

    93 100 99 25 April 2014 IAEFd 3.1.2

    92 101 99 25 April odQxh 2014 3.2.1

    I know you said that this situation is impossible (that is, if ID 91 and 93 have the same batch_no, then id 92 cannot have a different batch_no), but the application works even if this rule is broken.

  • Insert/update of the XML help merge and to generate the sequence number

    Hello

    I'm working on Oracle 11 g.

    I have a doubt with loading XML.
    I get an xml and I need to insert or update data in a table. What I can accomplish by using the MERGE statement.
    But there is a column in A table, I need to fill with a sequence number, based on the data sent in the xml file.
    The XML does not send the data in this column.
    And I have to make sure that sequence is created according to the order in which the records are present in xml.
    For example the MERGER is insert five rows and update two lines and insert again 3 rows of xml in table A. The sequence number must be created in the same order for the column in the table.
    Also for every new XML, the sequence starts with 1 and ends with the number of records in the xml file. I can't create a sequence and use the seq.nextval.

    Please let me know, there is a way to achieve this.

    Thank you!

    Published by: 934451 on 8 August 2012 06:33

    Published by: 934451 on 8 August 2012 06:50

    Hello

    As a result of your previous thread: {: identifier of the thread = 2403469}

    You can use the clause for ORDINALITE in XMLTable to generate the necessary sequence:

    MERGE INTO target_table t
    USING (
      SELECT x.seq_num, x.pk_id, x.col1, x.col2, ...
      FROM XMLTable(
             '/root/record'
             passing my_xml_doc
             columns seq_num FOR ORDINALITY
                   , pk_id   number       path 'ID'
                   , col1    varchar2(30) path 'COL1'
                   , col2    varchar2(30) path 'COL2'
                   , ...
           ) x
    ) src
    ON ( t.pk_id = src.pk_id )
    WHEN MATCHED THEN UPDATE
     SET t.seq_num = src.seq_num
       , t.col1 = src.col1
       , t.col2 = src.col2
       , ...
    WHEN NOT MATCHED THEN INSERT
     (seq_num, pk_id, col1, col2, ...)
     VALUES (src.seq_num, src.pk_id, src.col1, src.col2, ...)
    ;
    
  • Select the table column group and generate a sequence number

    I have to select data from a table column group and generate a sequence for every reset of the sequence from 1 to leave.

    For example:

    Data:
    Col1 Col2 Col3 Col4
    A NA KA-2009-08-13
    B NA KA-2009-08-13
    C NA KA-2009-08-13
    A NA KA-2009-08-13
    B NA KA-2009-08-13
    A NA KA-2009-08-13

    Expected results of the Select statement:
    Col1 Col2 Col3 Col4 Seq_No
    A NA KA-2009-08-13 1
    A NA KA-2009-08-13 2
    A NA KA-2009-08-13 3
    B NA KA-2009-08-13 1
    B NA KA-2009-08-13 2
    C NA KA-2009-08-13 1

    How can it be possible with a SELECT statement? Is it possible to assign the following numbers for a group of columns and put it back when it changes? In the above example, all columns are the key to generate the seq number

    I know that this can be done using procedures stored and that is how I do it now by introducing a temporary table.

    Can someone help me with this? Please let me know if the question is too vague to understand!

    Thank you
    Nachi

    Use the row_number() analytics.

    Ravi Kumar

  • Retrieve data from PL/SQL block and generate the UNIX data file

    Hi all

    I comply the following Unix Shell Script code block. The following code was generated the file count_curdate.txt with all need info. The query gives the number of records, the partition_dt group

    ABC ='sqlplus-s < < of folklore > count_curdate.txt
    uname/paswd@ConnectString
    SET THE OFF POSITION;
    SELECT COUNT (*) | «, » || partition_dt of the XYZ group by partition_dt;
    "exit";
    END '

    But now I need to change the above code to use dbms_application_info.set_module in it. Could someone let me know how to generate the file using PL/SQL in Shell Script block. I have tried following written code, but it generates count_curdate.txt file with 0 bytes.

    ABC ='sqlplus-s < < of folklore > count_curdate.txt
    uname/paswd@ConnectString
    Set serveroutput on;
    SET THE OFF POSITION;
    Set feedback off;
    BEGIN
    DBMS_APPLICATION_INFO.set_module (' shm.ksh ',' get account per day ");
    FOR again IN (SELECT COUNT (*):) «, » || partition_dt as 'DCount"of the XYZ of partition_dt group);
    LOOP
    DBMS_OUTPUT. Put_line (reccur. DCount);
    END LOOP;
    end;
    /
    "exit";
    END '

    Hello, your PL/SQL is not successfully completed, i.e.,.

    This:

    ABC=`sqlplus -s < count_curdate.txt
    uname/paswd@connectstring
    set serveroutput on;
    SET HEADING OFF;
    set feedback off;
    BEGIN
    dbms_application_info.set_module ('shm.ksh','get count by day');
    FOR reccur IN (SELECT COUNT(*)||','||partition_dt as "dcount" from XYZ group by partition_dt);
    LOOP
    DBMS_OUTPUT.PUT_LINE(reccur.dcount);
    END LOOP;
    end;
    /
    exit;
    END`
    

    Should be this:

    ABC=`sqlplus -s < count_curdate.txt
    uname/paswd@connectstring
    set serveroutput on;
    SET HEADING OFF;
    set feedback off;
    BEGIN
    dbms_application_info.set_module ('shm.ksh','get count by day');
    FOR reccur IN (SELECT COUNT(*)||','||partition_dt as "dcount" from XYZ group by partition_dt);
    LOOP
    DBMS_OUTPUT.PUT_LINE(reccur.dcount);
    END LOOP;
    end;
    /
    exit;
    EOF`
    
  • When I search for businesses, the address appears but is not the phone number. The number is displayed when I use Internet Explorer, so I don't know there is something to block these numbers popping up.

    I'm looking for manufacturing companies. When the info appears, everything is there except the phone number. This does not happen on Internet Explorer, so I know that the problem is inherent to Firefox. Something is blocking the pop up of these phone numbers.

    This has happened

    Each time Firefox opened

    == I started to search for companies

    Oh, if you want to learn more about why Internet Explorer is not a reference to rendering and all that, just ask. I'll be happy to tell you more.

  • Connection diagram missing in DAQ Assistant generate the signalling block

    This is my first post so please excuse the quality of my description.

    When I double click on the block of data acquisition - Assistant, there is no tab connection diagram I can access to see how things are wired to the top. I have a NI USB-6211 connected by USB and it is used to control many different sensors and a power supply. Currently, he works for everything and is hard wired correctly, but only blocks DAQ Assistant has a connection diagram available, the other are not. One who has a connection diagram is used to measure a voltage. Others who do not are used to generate a signal. I would really like to be able to see patterns of connection for each block.

    -Any help would be appreciated

    -Thank you

    You can always do like those who never use the DAQ Assistant and read the manual. Right click on the device in MAX and selecting "stitching of the device" works too.

  • How to set a menu of VI function to generate a copy of it self when it is move and dropped on the block diagram

    Is any way to put a VI that I placed on a palette in the menu functions to create a copy of it self when I place it on the block diagram?

    My example is as follows. I create a palette for a messaging configuration. The 'send message', 'message' and so forth will work normally with just called when necessary. But 'Create queues messge' must be specific for each instance, because I'm going to create a different number of queues each time I use it. (See system messages in queue OR for the "Continous Measument and Logging" model).

    So every time I drag and drop that VI (Create message Queues) in the palette, I want that it ask me where I want to save the VI.

    Is this possible?

    See you soon

    Henrik

    There is always the file-> new... that opens a new window.  You can have your models in this window by putting them somewhere (I can't remember where at the moment).

  • How to generate color on the block diagram box?

    v: * {behavior:url(#default#VML) ;} O'Bryan: * {behavior:url(#default#VML) ;} w\: * {behavior:url(#default#VML) ;} .shape {behavior:url(#default#VML) ;}}}} Normal 0 false false false MicrosoftInternetExplorer4 / * Style Definitions * / table. MsoNormalTable {mso-style-name: "Table Normal" "; mso-knew-rowband-size: 0; mso-knew-colband-size: 0; mso-style - noshow:yes; mso-style-parent:" ";" mso-padding-alt: 0 to 5.4pt 0 to 5.4pt; mso-para-margin: 0; mso-para-margin-bottom: .0001pt; mso-pagination: widow-orphan; do-size: 10.0pt; do-family: "Times New Roman"; mso-ansi-language: #0400; mso-fareast-language: #0400; mso-bidi-language: #0400 ;} "}

    I found the code snippet below into an example, but I can't recreate the color box on the block diagram using LV 8.6.  I can generate a color of the front box and then change to a constant on the block diagram, but I wouldn't be able to insert a color area directly from one of the palettes on the block diagram?

    Thanks in advance.

    jjgors wrote:
    The color box constant is in the palette "graphics and sound-> photo functions.

    and much more...

  • ORA-19599: block number 45289 is corrupt in the backup piece

    OS: RHEL 5.7 64bits

    Database: 11.1.0.7

    Hi all

    I have problems to restore RMAN backup on test computer. The restore command is sick of following error message:

    ORA-19599: block number 45289 is corrupted in the backup/oracle/clone/DEV/rman/RMAN_ERP_20150227_15927509_1 item

    I already checked the piece back on prod and it seems OK:

    RMAN > validate backupset 3840;

    From post on 27 February 15

    using channel ORA_DISK_1

    using the ORA_DISK_2 channel

    channel ORA_DISK_1: starting from the validation of the data file backup set

    channel ORA_DISK_1: reading of the backup/oradata/ERP/RMAN_BACKUP/RMAN_ERP_20150227_15927509_1 element

    channel ORA_DISK_1: piece handle = / oradata/ERP/RMAN_BACKUP/RMAN_ERP_20150227_15927509_1 tag = TAG20150227T040007

    channel ORA_DISK_1: restored the backup part 1

    channel ORA_DISK_1: validation complete, duration: 00:02:45

    Finished post on 27 February 15

    Restore validate command also fails on the test machine:

    RMAN > restore database validation verification logic;

    From restoration to 27 February 15

    using the control file of the target instead of recovery catalog database

    allocated channel: ORA_DISK_1

    channel ORA_DISK_1: SID = 779 type device = DISK

    allocated channel: ORA_DISK_2

    channel ORA_DISK_2: SID = 778 type device = DISK

    channel ORA_DISK_1: sweeping datafile copy /oracle/DEV/db/apps_st/data/a_ref03.dbf

    channel ORA_DISK_2: from the validation of the data file backup set

    channel ORA_DISK_2: reading of the backup/oracle/clone/DEV/rman/RMAN_ERP_20150227_15927510_1 element

    channel ORA_DISK_1: sweeping datafile copy /oracle/DEV/db/apps_st/data/a_txn_data05.dbf

    channel ORA_DISK_2: ORA-19870: error when restoring backup/oracle/clone/DEV/rman/RMAN_ERP_20150227_15927510_1 piece

    ORA-19599: block number 233296 is corrupted in the backup/oracle/clone/DEV/rman/RMAN_ERP_20150227_15927510_1 item

    channel ORA_DISK_2: scanning datafile copy /oracle/DEV/db/apps_st/data/a_int01.dbf

    channel ORA_DISK_1: starting from the validation of the data file backup set

    channel ORA_DISK_1: reading of the backup/oracle/clone/DEV/rman/RMAN_ERP_20150227_15927509_1 element

    channel ORA_DISK_1: ORA-19870: error when restoring backup/oracle/clone/DEV/rman/RMAN_ERP_20150227_15927509_1 piece

    ORA-19599: block number 45289 is corrupted in the backup/oracle/clone/DEV/rman/RMAN_ERP_20150227_15927509_1 item

    switch to the previous backup

    My confusion is why validate backupset succeeds the prod and the same backupset presents corruption block during test.

    Kind regards

    Vinod

    Maybe the backuppiece has been altered in the transfer to the DEV machine?  Run a checksum on the backuppiece on both machines and compare.

    Hemant K Collette

  • Error ORA-19502 writing on the file ' / INT1/arch/D/arch_1_1629_754400291.dbf ', block number 94209 (block size = 1024), ORA-27072

    Hi all

    In my database DVLUX226, in the alert logs, I get error ORA-19502. partners to archive newspapers. Here are the details:

    Wed Apr 16 18:26:58 2014

    Errors in the /INT1/sw/D/oracle/diag/rdbms/dvlux226/DVLUX226/trace/DVLUX226_arc1_22234.trc file:

    ORA-19502: write error on file ' / INT1/arch/D/arch_1_1629_754400291.dbf ', block number 94209 (block size = 1024)

    ORA-27072: IO file error

    HP-UX-ia64 error: 2: no such file or directory

    Additional information: 4

    Additional information: 94209

    Additional information: 638976

    Wed Apr 16 18:27:11 2014

    ARCH: Stopped archiving, error occurred. Will continue to retry

    ORACLE Instance DVLUX226 - check-in error

    ORA-16014: log 3 sequence # 1629 not archived, not available destinations

    ORA-00312: wire 3 1 online journal: ' / INT1/oraredo2a/D/DVLUX226/redo03.log'

    Errors in the /INT1/sw/D/oracle/diag/rdbms/dvlux226/DVLUX226/trace/DVLUX226_arc0_22231.trc file:

    ORA-16014: log 3 sequence # 1629 not archived, not available destinations

    ORA-00312: wire 3 1 online journal: ' / INT1/oraredo2a/D/DVLUX226/redo03.log'

    SQL > select * from v version $;

    BANNER

    --------------------------------------------------------------------------------

    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production

    PL/SQL Release 11.1.0.7.0 - Production

    CORE Production 11.1.0.7.0

    AMT for HP - UX: 11.1.0.7.0 - Production Version

    NLSRTL Version 11.1.0.7.0 - Production

    Please let me know how can I manipulate this alert as seems its related archive.

    Kind regards

    Michel

    > - rw - rw - 1 int1orad s/n 99222528 Apr 15 15:27 arch_1_1628_754400291.dbf

    > - rw - rw - 1 int1orad s/n 99222528 Apr 18 03:24 arch_1_1629_754400291.dbf

    What happened between Apr 15 15:27 and 18 April 03:24?

  • Problem with the text block, put in place when it is used on the page number marker

    Hello!

    I would use the text block on the marker page number on the master page in Indesign. The text block should change width when increases the page number. It does not work. What happens is that when the number of page moves a two-digit figure, the numbers tightened itself (compressed on top of each other) and the block of text changes size unless I drag on it (which means I have to manually unlock the master page first).

    I'm doing something wrong, or is this a bug?

    Thank you!

    Altogether! So, you can use a rule of Pará to simply do it!

  • Get the serial number automatically in the data block

    How can I get the serial number automatically in the block of data after executing the query statement

    use: blk.slnumber: =:system.trigger_record; in the trigger after change.

  • is there any function in the osb to generate a unique number in proxy

    is there any function in the osb to generate a unique number in proxy

    FN - bea: uuid()

    The function fn - bea: uuid() returns a universal unique identifier. The function has the following signature:

    FN - bea: uuid() as XS: String

    You can use this function in the pipeline of proxy to generate a unique identifier. You can insert the unique identifier that is generated in an XML document in the form of element. You are unable to generate a unique identifier to the system variable. You can use this to edit a message payload.

    For example, suppose you want to generate a unique identifier to add it to a message for follow-up purposes. You can use this function to generate a unique identifier. The function returns a string that you can add it to the SOAP header.

Maybe you are looking for

  • Speed-Up Satellite C70D-A-107

    I have a C70D-A-107 and want to speed up this laptop. Already placed 4 GB of additional memory for the laptop has now 8 GB internal. I doubt if it is useful to 2x8gb. I think that the processor is just to slow down. It has an E1-2100 AMD inside. Is i

  • Satellite L875D-S7332 - keyboard replacement - illuminated / backlight?

    Aloha people,. First and foremost a matter of keyboard L875D... Newbie: Sorry if this has already been addressed and answered before, but I need to know...Looking for a solid answer that I have still not yet to find, brought me here... Has anyone tri

  • AS Desktop M32CD: Printer-wireless computer

    I had the printer (HP Photosmart 6525) working with my new computer (AUSA M32CD) wireless recently, but traveled for 4 days and turn off the computer during this time.  When I got home, I turned on the computer back, checked the router wireless (Netg

  • transfer of pictures to a flashdrive to my library of images

    Hello Today, I put my flash drive which is full of my photos in my USB slot on my pc windows 8. What is a 'disc D' (removable) arrives with all my photos with dates etc. I want them in my library of images and I don't have a clue how to proceed. When

  • Hoe ken ik het besturrings bij werken?

    IK wil like principled hoe ik het bestuurrings syteem ken werken bij?