Insert statment

Hello,
i have the following problem. I got a procedure that takes 2 parameters in date format.
Those two parameters are : "start_date" and "end_date". When it comes to situation
when "start_date" and "end_date" are in different years and one of those is in a leap year for example:
start_date = to_date('10.10.2011','dd.mm.yyyy') and end_date = to_date('01.02.2012','dd.mm.yyyy')
or example2:
start_date = to_date('01.01.2010','dd.mm.yyyy') and end_date = to_date('11.12.2012','dd.mm.yyyy')
then i want to make those statements stored in a cursor:
example1: 10.10.2011 - 31.12.2011
01.01.2012 - 01.02.2012
or example2: 01.01.2010 - 31.12.2011
01.01.2012 - 11.12.2012
Anyone can help me?
Thank you!

Hi,
Matt Valkonn wrote:
Hello,
OK i see now thats is quite vague description in my original post. Let me try again.Sorry, it's still not very clear.
I have problems with leap years in my procedure when i am doing some calculations.
Now when ever my procedure gets dates Start_date = 01.01.2010 end_date = 01.02.2013 i have to break it into seperate statements ONLY if its within leap year.Only when what is within leap year? Start_date? End_date? In the example above, neither start_date nor end_date is in a leap year.
What does that mean is that I will have to break above example into folowing statments:There are no statements below. When you say "statement", what do you mean?
01.01.2010-31.12.2011 (the logic here is break it from start date till the last day of non leap year -> 31.12.2011)
01.01.2012 - 31.12.2012 (logic here is starting from 1st day of leap year till last day of leap year or till end date)
01.01.2013 - 01.02.2013 (logic here is first day after leap year till end_date)What if start_date is in a leap year, but after February 29? What if end_date is in a leap year, but before February 29? When you post CREATE TABLE and INSERT statements for the sample data, include cases like these.
And i need those ^ records to be inserted into some temp_table which will be read with my procedure later on.What is do you mean by "^ records"? What makes them diofferent from regular records?
What are "records"? Do you mean "rows"?
create table temp_table
start_date date,
end_date date
);Why do you need a temporary table? As I understand it, you want to run an INSERT statement to populate the table, and then use that table in some other statement (let's call it statement X). Why not just split the date range into parts in statement X? What is statement X, anyway? As I understand it, statement X is something that operates over a start_date-end_date range, but does not always work corrently when that range includes multiple years, including a leap_year. While breaking the range into smaller pieces might allow you to use the existing statement X, wouldn't fixing statement X (so that leap years did not cause a problem) be better? Given that you really do need to split the range into pieces, why not alwyas brak them into single calendar years, whether or not they are leap years?

Similar Messages

  • Need help in insert statment query

    Hi,
    I have a table T1 with values like
    col1
    1
    2
    3
    4
    I need to write insert statment for t2 as
    insert into t2(col1,col2) values ('AA',select col1 from t1);
    The output of T2 should be
    col1 col2
    AA 1
    AA 2
    AA 3
    AA 4
    Any help in modifying the query.
    Ashish

    What is wrong with this?
    INSERT INTO id_own_dw.id_t_dw_org_dq_tgt
           (cost_center_cod_vc_old,
            cost_center_cod_vc_new
         SELECT '3016052',<<<_-- this you can replace with your varibale in pl/sql block
                cost_center_cod_vc
           FROM id_own_dw.id_t_dw_msl_org_cctr2mkdiv
          WHERE busi_unit_cod_vc = '3016496'

  • Using 'dbms_obfuscation_toolkit.md5' in my insert statment itself

    Hi all,
    I am trying to use 'dbms_obfuscation_toolkit.md5' in my insert statment itself as : insert into TEST_USERS values('username', dbms_obfuscation_toolkit.md5('password'));
    But i get this : ORA-06553: PLS-307: too many declarations of 'MD5' match
    Can you please help me on how can i insert a string (not raw) as MD5 hash to a table???
    The password column i have is 'varchar(20)'. I dont mind changing it to something else. I am also struggling to find this package definition/help, to check what db type this function returns :-)
    Thanks for the help.

    Hello,
    Try posting this to the General Database Discussions forum.
    This forum is for SQLJ & JDBC.

  • Error in insert statment in pl/sql

    Hi all,
    How i Execute Insert statment in Pl/Sql
    SQL> DECLARE
    2 tablename varchar2(30);
    3 Begin
    4 begin
    5 select table_name into tablename from user_tables
    6 where table_name=upper('t_calling');
    7 EXCEPTION
    8 WHEN no_data_found then
    9 execute immediate 'create table t_calling(F_CODE number,
    10 F_CALLING varchar2(50))';
    11 INSERT INTO T_Calling VALUES (1, 'asd');
    12 end;
    13 -- --------------------------
    14 Commit;
    15 End;
    16 /
    INSERT INTO T_Calling VALUES (1, 'asd');
    ORA-06550:
    PLS-00201: identifier 'T_CALLING' must be declared
    ORA-06550:
    PL/SQL: SQL Statement ignored
    Thanks
    alaa

    You are creating this table with an execute immediate statement. Which suggests that it doesn't exist yet. Therefore your insert statement is referencing a non-existent table so naturally it won't compile.
    If you really want to do this you should put the insert into an execute immediate statement as well. However, I recommend that you don't do this - it is very bad practice to put this sort of processing in the exception handler. Why? Well, what happens if the table T_CALLING already exists? The exception's got no where to go, so your program fails with an Unhandled Exception error.
    HTH, APC

  • Using CASE and CAST in a INSERT statment

    Can I have a CASE condition or a CAST condition within an INSERT statement?
    For example:
    Insert into table1 (
    Value1,
    Value2,
    Value3,
    Value4)
    Select
    Seq1.nextval,
    Case when (color.grade in (6,5,7,8) or color.grade2 in (6,5,7,8,11,12)
    Then 2
    Else 1
    End case,
    ‘GREAT’,
    CAST(color.client as varchar2)
    From color;
    Must I specify a column name in the CASE statement? If so, how can I do it if it is based on values from 2 columns?

    Satyaki_De wrote:
    Yes.
    A little modification in your query ->
    Insert into table1(
    Value1,
    Value2,
    Value3,
    Value4
    Select Seq1.nextval Value1,
    Case
    when color.grade in (6,5,7,8)
    or color.grade2 in (6,5,7,8,11,12) Then
    2
    Else
    1
    End case Value2,
    ‘GREAT’ Value3,
    CAST(color.client as varchar2) Value4
    From color;Regards.
    Satyaki De.I don't think that the "END CASE" is supported in SQL, it's the PL/SQL syntax of the CASE statement that requires an END CASE.
    In addition if you cast to VARCHAR2 you need to specify the length of the VARCHAR2, e.g. VARCHAR2(100).
    So the statement probably should look something like this (untested):
    Insert into table1(
                       Value1,
                       Value2,
                       Value3,
                       Value4
    Select Seq1.nextval Value1,
           Case
           when color.grade in (6,5,7,8)
             or color.grade2 in (6,5,7,8,11,12)
           Then
             2
           Else
             1
           End Value2,
           'GREAT' Value3,
           CAST(color.client as varchar2(100)) Value4
    From color;Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Select and insert statments

    I am running PHP 4.3.9 and Orace 10g.<p>
    I have a simple select query to check for the existence of a unique row.<p>
     $idCheck="select * from fuel.trip_segment where id='$id'";     <br>     
          $statementa= OCIParse($c, $idCheck);<br>
          OCIExecute($statementa);<br>
          $rows = OCIFetchStatement($statementa, $results);<br>
      echo "row: ".$rows ;<p>
    The output should be "1" when a row is found. But for some reason it always returns "0" regardless. If i execute this query ($idCheck) with out database/sql interface software, it will return the row of the given id. <p>
    Problem 2<br>
    I also have an insert query which will work if put directly into the database/sql interface software, but will not work when executed in PHP.<p>
     $upload="insert into fuel.trip_segment (id, unitno, downloaddate, drive_time, distance, fuel, idle_time, idle_fuel, idle_percent, load_factor, ave_speed, ave_Dspeed, max_speed, max_rpm, start_time, end_time, start_odo, end_odo)<br>
     values ('$id', '$unit', to_date('$dateFormatted', 'dd-mon-yyyy hh:mi AM'), '$drive_time', '$distance', '$fuel', '$idle_time', '$idle_fuel', '$idle_percent', '$load_factor', '$ave_speed',     '$ave_Dspeed', max_speed', '$max_rpm', '$start_time', '$end_time', '$start_odo', '$end_odo')";<p>
     $statementb= OCIParse($c, $upload);<p>
     OCIExecute($statmentb);<p>
    The information is not being inserted at all.<p>
    Any help would be great.<p>
    Disclaimer: Oracle novice
    Message was edited by:
    tckephart

    Hello!
    Problem 1:
    Try to use select id and not to use select *
    then try to use a while maybe the result is more than one row
    $idCheck="select id from fuel.trip_segment where id='$id'";
    $statementa= OCIParse($c, $idCheck);
    OCIExecute($statementa);
    while(OCIFetchInto($statementa, $results))
    echo "id: ".$results[0];
    } //end while
    Problem 2
    Maybe you have wrong the query insert, max_speed need $.
    but anyway try this:
    $upload="insert into fuel.trip_segment
    values
    '".$id."',
    '".$unit."',
    to_date('".$dateFormatted."', 'dd-mon-yyyy hh:mi AM'),
    '".$drive_time."',
    '".$distance."',
    '".$fuel."',
    '".$idle_time."',
    '".$idle_fuel."',
    '".$idle_percent."',
    '".$load_factor."',
    '".$ave_speed."',
    '".$ave_Dspeed."',
    '".$max_speed.'",
    '".$max_rpm."',
    '".$start_time."',
    '".$end_time."',
    '".$start_odo."',
    '".$end_odo."'
    $statementb= OCIParse($c, $upload);
    OCIExecute($statmentb);
    $record_insert = @OCIRowCount($statmentb);
    This count how many record you have inserted.
    Have a nice work
    Angelo

  • Exception in two places of insert statment

    Hi All,
    I want to insert exception in two places in pl sql. I am getting the error.Is there a way to implement exception in two places in insert statement.
    Thanks,
    uday
    Begin
    Declare
    V_Code Number;
    V_Errm Varchar2(64);
    V_Code1 Number;
    V_Errm1 Varchar2(64);
    INSERT INTO Raise
    Select Employee_Id, Salary*1.1 From Employees
    Where Commission_Pct > .2;
    EXCEPTION
    When Others Then
    V_Code := Sqlcode;
    V_Errm := Substr(Sqlerrm, 1, 64);
    Dbms_Output.Put_Line ('Error code ' || V_Code || ': ' || V_Errm);
    Insert Into Scap_Fact_Loading_Errors Values (V_Code, V_Errm, Systimestamp);
    INSERT INTO Raise
    Select Employee_Id, Salary*1.1 From Employees
    Where Commission_Pct > .1;
    EXCEPTION
    When Others Then V_Code1 := Sqlcode;
    V_Errm1 := Substr(Sqlerrm, 1, 64);
    Dbms_Output.Put_Line ('Error code ' || V_Code1 || ': ' || V_Errm1);
    INSERT INTO Scap_Fact_Loading_Errors VALUES (v_code1, v_errm1, SYSTIMESTAMP);
    END;
    Edited by: 929521 on Jan 7, 2013 10:15 AM

    >
    I want to insert exception in two places in pl sql. I am getting the error.Is there a way to implement exception in two places in insert statement.
    >
    Sure - use two different blocks. The code you posted doesn't have any BEGIN.
    The proper structure is:
    BEGIN
    . . . put your first code here
    EXCEPTION
    . . . put your first exception handling here
    END;
    BEGIN
    . . . put your second code here
    EXCEPTION
    . . . put your second exception handling here
    END;If you need your code to quit after an exception in one of the blocks issue a RAISE in the exception handler for that block.
    Depending on what each block does and what you want to save or rollback it is also common to use SAVEPOINTs for the blocks.
    See SAVEPOINT in the SQL Language doc.
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_10001.htm
    >
    savepoint
    Specify the name of the savepoint to be created.
    Savepoint names must be distinct within a given transaction. If you create a second savepoint with the same identifier as an earlier savepoint, then the earlier savepoint is erased. After a savepoint has been created, you can either continue processing, commit your work, roll back the entire transaction, or roll back to the savepoint.
    Example
    Creating Savepoints: Example To update the salary for Banda and Greene in the sample table hr.employees, check that the total department salary does not exceed 314,000, then reenter the salary for Greene:
    UPDATE employees
    SET salary = 7000
    WHERE last_name = 'Banda';
    SAVEPOINT banda_sal;
    UPDATE employees
    SET salary = 12000
    WHERE last_name = 'Greene';
    SAVEPOINT greene_sal;
    SELECT SUM(salary) FROM employees;
    ROLLBACK TO SAVEPOINT banda_sal;
    UPDATE employees
    SET salary = 11000
    WHERE last_name = 'Greene';
    COMMIT;
    >
    For your use case you could create a SAVEPOINT before each of the blocks and then in the exception handlers issue a ROLLBACK to the appropriate SAVEPOINT before you exit the procedure.

  • Syntax error in insert statment

    I need to insert values an Internal table into a ZTABLE.
    <b>INSERT ZTABLE FROM TABLE FINAL.</b>
    <i>Error message:</i>
    <b>The work area "FINAL" is not long enough.</b>
    I have declared the structure of the internal table FINAL same as the ZTABLE. Still I am getting the error message

    Hi Viven,
    Try this
    DATA: lit_ztable TYPE TABLE OF ztable,
    INSERT ztable FROM TABLE lit_ztable               ACCEPTING DUPLICATE KEYS.
    Rgds,
    Prakash
    <b>Rward useful answer</b>

  • How to insert image file as a field value into blob field type using insert statment

    i have a column named picture of datatype BLOB
    now i want to insert an image file into that column using
    INSERT state so that it can be called in a jsp file using
    getBLOB request method.
    HELP!!
    thank you
    sal

    See this link
    http://www.psoug.org/reference/dbms_lob.html

  • Using SQL DML INSERT how can I put a ref atrib with out a select

    What i am trying to do is use the insert statment to insert into a object table that has an atribute that is scope to another table as a REF of that type.
    something like this:
    INSERT INTO TABLE_AAA (NAME, SOMETHING) VALUES ('AAA','BBB');
    SELECT REF(P),P.NAME FROM TABLE_AAA WHERE P.NAME='AAA';
    IT GIVES ME THE REF THAT ARE 85 NUMBER AND LETTERS AND THE NAME=AAA
    SO WITH THIS INFORMATION I COPY THE REF AND PUT IT IN TABLE_BBB AS:
    INSERT INTO TABLE_BBB (REF_TYPE_AAA, SOMETHING)
    VALUES(1234567890123456789012345678901234567890123456789012345678901234567890123456789012345,'QQQ');
    THIS IS NOT WORKING I TRY DIFERENT THINGS, BUT NOTHING WORKS
    WHAT I DONT WANT IS TO USE THE SELECT IN THE INSERT, I JUST WANT TO PUT THE VALUE OF THE REF IN THE INSERT.
    WHAT FUNTION DO I NEED TO CAST OR CONVERT TO A REF DOES NUMBERS AND LETTERS THAT I HAVE, THAT I CAN USE A SIMPLE INSERT COMMAND.
    THANK IN ADVANCE FOR YOUR KIND

    Hi,
    Could you give structures of objects (tables/type objects)?
    It may help to clarify your doubt.
    Regards,
    Sailaja

  • How to generate the insert staments of all schema tables with one DBPROC

    [code]CREATE DBPROC SCHEMA_INSERT_SCRIPT
    AS
    VAR L_STATEMENT VARCHAR(500) ;
    L_COL_NAME VARCHAR(50);
    L_ALL_TAB_COLS VARCHAR(400);
    L_TAB_NAME VARCHAR(50);
    L_SQL VARCHAR(1000);
    TRY
          SET L_ALL_TAB_COLS = ' ';
          DECLARE C_TAB_CUR CURSOR
          FOR
            SELECT T.TABLENAME,C.COLUMNNAME
            FROM DOMAIN.TABLES T, DOMAIN.COLUMNS C
            WHERE T.OWNER='SCOTT2'
            AND T.TABLENAME = C.TABLENAME
            AND  T.TABLENAME='DEPT';
          WHILE $RC = 0 DO
          BEGIN
          FETCH C_TAB_CUR INTO :L_TAB_NAME, :L_COL_NAME;
    SET L_ALL_TAB_COLS = L_ALL_TAB_COLS || L_COL_NAME || ',';
          DELETE FROM SCOTT2.QUERY;
    INSERT INTO SCOTT2.QUERY VALUES
    ('insert  into '||TRIM( :L_TAB_NAME) ||
    '(' || SUBSTR(:L_ALL_TAB_COLS,1,LENGTH(:L_ALL_TAB_COLS)-1)||
    INSERT INTO SCOTT2.QUERY VALUES( 'values (');
       END;
        CATCH   
        CLOSE C_TAB_CUR;[/code]
    till now i am getting output as
    insert into DEPT(DEPTNO,DNAME,LOC)
    values (
    but i want output from this procedure as
    insert into DEPT(DEPTNO,DNAME,LOC)
    values (10,'SALES','NEWYORK')
    so kindly help me out how can i access the data from tables and create the insert statements of the table.
    with this above Procedure,i want to generate the insert statments of the table.
    please advice me how can i go.
    thanks,Bhupinder

    Hi,
    from what I understand from your post, the thing that's missing is the retrieval of the data from the tables and its types. This could be done very similar to your already done tablespecs, just perform a select, use a cursor again and in there, make sure that character (etc.) fields get surrounded by '' and integers not.
    Regards,
    Roland

  • Execute Immediate. Insert from materialized view.

    Hi,
    I'm using Execute Immediate in a function to insert rows into a table. (Oracle 10G) The function in tern is used in a materialized view. So, effectively the view does an insert.
    When I just had a regular insert statment the view would not compile. When I changed the insert statment into the execute immediate it started working.
    Here are my questions:
    1. Do I need a commit or execute immediate does it automatically? When I create my view that calls the function it looks like the rows do get inserted as expected. But I couldn't find documentation that explains whether execute immediate does the commit.
    2. Is there a drawback to using execute immediate in a function that is used in a materialized view? Is there other way to insert rows from a materialized view? Can I call a stored procedure instead of a function in a materialized view?
    Your help is greatly appreciated.
    Thanks
    NK

    there are things that I'm not able to question yet :)It's a lot easier to write decent programs if we understand the why of the requirement as well as the what. I think you will create a better impression in your new job if you demonstrate some liveliness of thought and personality - by asking questions - rather than merely following orders.
    The question I proposed is not necessarily a hostile one (I can think of at least one good reason for doing what you've been asked to do). Broadening your knowledge of your new system is a good thing in its own right. But you never know, asking the right question may prevent you doing unnecessary work.
    Cheers, APC

  • SQL Developer 3.1.07 SDO_GEOMETRY export insert statements bug

    Export table data with SDO_GEOMETRY column as insert statments not working properly.
    Generated script:
    +...+
    +Insert into EXPORT_TABLE (ID,GEOMETRY) values ('1',[MDSYS.SDO_GEOMETRY]);+
    +Insert into EXPORT_TABLE (ID,GEOMETRY) values ('2',[MDSYS.SDO_GEOMETRY]);+
    +Insert into EXPORT_TABLE (ID,GEOMETRY) values ('3',[MDSYS.SDO_GEOMETRY]);+
    +...+

    As noted by Brian Jeffries (as in, "Will be available in next release") in these two other threads:
    Re: Problem with displaying sdo_geometry objects
    Re: SQL Developer 3.0.04 - SDO_GEOM Issues
    -Gary

  • Insert record in table having BLOB datatype

    Hi All,
    I have a table with BLOB datatype, Pls assist me how to insert a record in this table?
    CREATE TABLE document_BLOB_tab (
    doc_id_no NUMBER
    , doc_name VARCHAR2(200)
    , doc_value BLOB);
    What are the process to execute DBMS_LOB.fileOpen ?
    Rgds
    Sarfaraz

    1- Create a table that has a list of all directory, filenames combination
    SQL> create table listpic (directory varchar2(10), filename varchar2(10));
    Table created.
    2- Insert into that table all your directories and the filenames of the images within each
    directory (directory, filename) combination
    on my file system, I have
    d:\tars\samples1\lilies.jpg
    d:\tars\samples1\Sunset.jpg
    d:\tars\samples2\Blue.jpg
    d:\tars\samples1\Winter.jpg
    Here is my insert statment
    SQL> insert into listpic values('Samples1', 'lilies.jpg');
    1 row created.
    SQL> insert into listpic values('Samples1', 'Sunset.jpg');
    1 row created.
    SQL> insert into listpic values('Samples2', 'Blue.jpg');
    1 row created.
    SQL> insert into listpic values('Samples2', 'Winter.jpg');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from listpic;
    DIRECTORY FILENAME
    Samples1 lilies.jpg
    Samples1 Sunset.jpg
    Samples2 Blue.jpg
    Samples2 Winter.jpg
    3- Create the table where you are going to store your pictures
    SQL> create table pictures (id number(5), image blob);
    Table created.
    4- Create a directory pointing to the common parent Directory
    SQL> create or replace directory IMAGES as 'd:\tars';
    Directory created.
    5- Create the following procedure to insert the image
    SQL> set serveroutput on
    SQL> create or replace procedure insert_image as
    2 f_lob bfile;
    3 b_lob blob;
    4 i number := 1;
    5 cursor image_cur is select directory, filename from listpic;
    6 pic_rec image_cur%ROWTYPE;
    7 begin
    8
    9 OPEN image_cur;
    10 Loop
    11 fetch image_cur into pic_rec;
    12 EXIT WHEN image_cur%NOTFOUND;
    13 insert into pictures values ( i, empty_blob() )
    14 return image into b_lob;
    15
    16 f_lob := bfilename( 'IMAGES','\'||pic_rec.DIRECTORY||'\'||pic_rec.FILENAME);
    17 dbms_lob.fileopen(f_lob, dbms_lob.file_readonly);
    18 dbms_lob.loadfromfile( b_lob, f_lob, dbms_lob.getlength(f_lob) );
    19 dbms_lob.fileclose(f_lob);
    20 dbms_output.put_line (pic_rec.directory ||'\'||pic_rec.filename);
    21 commit;
    22 i := i+1;
    23 END LOOP;
    24 end;
    25 /
    Procedure created.
    6- execute the procedure
    SQL> exec insert_image;
    Samples1\lilies.jpg
    Samples1\Sunset.jpg
    Samples2\Blue.jpg
    Samples2\Winter.jpg
    PL/SQL procedure successfully completed.
    SQL> select count(*) from pictures;
    COUNT(*)
    4
    SQL> select length(image) from pictures;
    LENGTH(IMAGE)
    83794
    71189
    28521
    105542
    Image has been uploaded to the dataabase.

  • Insert more then one record on a Form in a Data Block

    Hi,
    How can I Insert more then one record in the DataBlock of a Form in a WHEN_BUTTON_PRESSED trigger. In the Trigger I have given "commit" but it just saves the record once regardlessly how many times you press the button.
    Thanks in advance
    Khawar

    Hi,
    You said
    "**In the Trigger I have given (commit) but it just saves the record once regardlessly how many times you press the button.**"
    I think u want to batch mode insertion if m not wrong?
    1- Use Insert statment instead of commit and then next record.
    Begin
    Insert into <table> values (:Blk.Val1,:Blk.Val2,:Blk.Val3,:Blk.Val4);
    Create_record;
    End;
    2-Use another object say button for commit record.
    Acknowledege me
    Best regards
    Khurram Siddiqui

Maybe you are looking for

  • Error while upgrading Patch SAPKB70014- Error R3trans received signal 11

    Dear All while updating my basis patch level to sapkb70014 I m facing the error at DDIC import phase related to R3trans recived signal 11.My tp version is accurate as required . Kernel versin is 238 Can you guys help me to solve the same Regards Shil

  • Synchronisation between two apple acounts

    Hello i have two apple accounts and i want to synchronize the bookmarks from Safari and the adressbook how is this posible? The situation: i have a Iphone, IPad and a Mac with I Cloud i have on every device the same adressbook and bookmarks, now my w

  • Planning to learn SAP BPC/CRM

    Hi Friends!! I am a certified SAP FI consultant with 8 years of experience and I have done my MBA finance and now I am planning to learn other modules I heard BPC and CRM are in huge demand now, After seeing the course of BPC I felt its more technica

  • My IPod froze and will not connect back to my computer and  I have tried the restore what else can be done?

    My IPod will not connect with my computer has been freezing up and I have already tried restoring it. Does anyone know of anything else that can done?

  • Help with selection

    I am stuck with a problem and I cannot figure it out. I need to be able to extract data based on the records in the BSIS table which do NOT have a corrosponding entries in the BSIK or the BSID table. I need only the GL records. I am trying the code b