Select sq.NEXVAL  in Trigger on 11g ?

Hi,
does the old version :
select sq.nextval inro :NEW.id# from dual not work in a bef - ins - trigger on 11g ?
With :NEW.id# := sq.nextval; it works ..
Thanks ,
Friedhold

Well,
I don't have Oracle 11g installed in my laptop. So, i had to use Oracle Apex facility to get that.
Here is the simulation ->
In 10g,
satyaki>
satyaki>select * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production
Elapsed: 00:00:00.15
satyaki>
satyaki>
satyaki>create table fmtz
  2    (
  3      i_d     number(5) not null,
  4      d_esc   varchar2(50)
  5    );
Table created.
Elapsed: 00:00:04.70
satyaki>
satyaki>create sequence fmtz_seq
  2  start with 1
  3  increment by 1;
Sequence created.
Elapsed: 00:00:00.25
satyaki>create or replace trigger fmtz_proc
  2  before insert on fmtz
  3  for each row
  4  declare
  5    snt    number(5);
  6  begin
  7    select fmtz_seq.nextval
  8    into snt
  9    from dual;
10   
11    :new.i_d := snt;
12  end;
13  /
Trigger created.
Elapsed: 00:00:00.12
satyaki>
satyaki>insert into fmtz(d_esc) values('&d_sc');
Enter value for d_sc: POPULAR
old   1: insert into fmtz(d_esc) values('&d_sc')
new   1: insert into fmtz(d_esc) values('POPULAR')
1 row created.
Elapsed: 00:00:00.12
satyaki>
satyaki>select * from fmtz;
       I_D D_ESC
       103 POPULAR
Elapsed: 00:00:00.22
satyaki>
satyaki>
satyaki>In 11g,
select * from v$version
BANNER
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
PL/SQL Release 11.1.0.6.0 - Production
CORE 11.1.0.6.0 Production
TNS for Linux: Version 11.1.0.6.0 - Production
NLSRTL Version 11.1.0.6.0 - Production
5 rows returned in 0.03 seconds
create table fmtz
    i_d     number(5) not null,
    d_esc   varchar2(50)
Table created.
0.79 seconds
create sequence fmtz_seq
start with 1
increment by 1;
Sequence created.
0.01 seconds
create or replace trigger fmtz_proc
before insert on fmtz
for each row
declare
  snt    number(5);
begin
  select fmtz_seq.nextval
  into snt
  from dual;
  :new.i_d := snt;
end;
Trigger created.
0.13 seconds
insert into fmtz(d_esc) values('FMTZ');
1 row(s) inserted.
0.02 seconds
select * from fmtz;
I_D     D_ESC
1     FMTZ
1 rows returned in 0.01 secondsRegards.
Satyaki De.

Similar Messages

  • Select 'x' from sys.trigger$ t

    HI all,
    I am running adadmin and it's failed on worker01 and checking the log file I saw
    and not exists ( select 'x' from sys.trigger$ t
    ERROR at line 25:
    ORA-00942: table or view does not exist
    this error.can some one help me how to fix this.
    Regards
    A

    Just wonder If you have sorted out the issue?
    If not you can try to run the script assigned to the particular worker manualy in morder to reproduce the problem, then try to understand that is wrong by analizing the script.
    If yes can you please update as what was the problem?
    Yury
    Check this out:
    A.
    http://www.freelists.org/archives/ora-apps-dba/05-2006/msg00000.html
    B.
    - Users can subscribe to your list by sending email to
    ora-apps-dba-request_at_freelists.org with 'subscribe' in the Subject field
    C.
    http://www.freelists.org/archives/ora-apps-dba/05-2006/threads.html

  • Get OLD&NEW value of an UPDATED column selected dynamically in a Trigger

    Hi All,
    I am writting a trigger which take column name dynamically. And on the basis of that column it should give me old value as well as updated value of a column corresponding to a modified row.
    OOO_SCHEDULE is my table name;
    Note: This is only for test so I am writting only for update not for insert and delete.
    create or replace trigger "OOO_SCHEDULE_AUDIT"
    BEFORE
    insert or update or delete on "OOO_SCHEDULE"
    for each row
    begin
    DECLARE
    v_username varchar2(30);
    AUDIT_EMP_ID varchar2(30);
    AUDIT_EMP_ID_NEW varchar2(30);
    v_Column_name VARCHAR(30);
    v_stmt1 VARCHAR(40);
    v_stmt2 VARCHAR(40);
    CURSOR C1 is
    select COLUMN_NAME from user_tab_columns where table_name='OOO_SCHEDULE';
    BEGIN
    OPEN c1;
    LOOP
    FETCH c1 into v_Column_name;
    EXIT WHEN c1%NOTFOUND;
    v_stmt1:=('OLD.'||v_Column_name);
    v_stmt2:=('NEW.'||v_Column_name);
    AUDIT_EMP_ID:=v_stmt1;
    AUDIT_EMP_ID_NEW:=v_stmt2;
    INSERT INTO TEMPTEST VALUES(v_stmt1);
    INSERT INTO TEMPTEST VALUES(AUDIT_EMP_ID);
    END LOOP;
    CLOSE c1;
    END;
    end;
    Suppose OOO_EMP_NAME is the column name where user made the change.
    If i do like this..
    AUDIT_EMP_ID:=OLD.OOO_EMP_NAME;
    AUDIT_EMP_ID_NEW:=NEW.OOO_EMP_NAME;
    Then it is working fine because I have given column name statically. But I want the column name to be selected dynamically and I am able to do it through cursor. Also I am able to fetch all column names in v_Column_name variable one by one dyanamically for the cursor.
    But by executing these statements
    AUDIT_EMP_ID:=v_stmt1;
    AUDIT_EMP_ID_NEW:=v_stmt2;
    I am getting OLD.OOO_EMP_NAME and NEW.OOO_EMP_NAME rather then old and new values of the updated column.
    Please help me identifying the problem, where I am doing the mistake? What is the correct way to execute these statements? So that I can get old and new values of the column (updated column).
    I have tried it by passing in a procedure also but don't know how to execute this dynamic statement to get the old and new values.
    Thanks,
    Ishrat.

    In the given link, column name has been selected statically. But i want that column name should be selected daynamically throgh loop and then check the
    condition for any update corresponding to that column value. I don't want to write as many if condition as the no. of column name. I just want one if condition for all column namesDon't be lazy. Write all column names into your trigger. Or use a way to create the trigger "dynamically".
    What is the problem that you have with static column names? "I don't want to write many..." is not a problem, but an opinion.

  • Default in "order by" in select query may be different in 11g from 10g

    Hi, I am wondering if when you are querying a table in 11g and you use the order by clause and there is more than one occurrences with the same values in the order by, if the 11g default is different than from 10g.  For instance.
    DECLARE MHBulk CURSOR FOR                       
      select invoice_nbr,
                   customer_nbr,
                    post_century,
                    post_yymmdd,
         from CUSTOMERS
         where customer_nbr = 1234
         order by
               post_century,
               post_yymmdd;
    If you have more than one occurrence of the same customer_nbr, post_century, and post_yymmdd it looks like the default order for how 11g retrieves the records is a bit different than the 10g default.   Does anyone know why this is?

    JustinCave wrote:
    In any version of Oracle, if your ORDER BY does not specify a completely unique order, the order in which ties are broken is arbitrary.  Realistically, it will depend on things like the specific query plan chosen, the physical order of data on disk, which parallel query slave read the row, etc.  So it is subject to change within the same version of the database when, for example, a query plan changes.  It is entirely plausible that the results would be returned in the same order for years and then suddenly change one day.  If you care about the order of ties, you should add additional logic to the ORDER BY clause that specifies the order you want rather than assuming that there is a "default" order applied.
    Upgrading to a new version of Oracle, particularly if that was done via something like exporting and importing the data so that you're changing the Oracle version and the physical order of data and various object statistics, it is not at all unusual that you would get slightly different plans and that ties would be broken differently.  I wouldn't assume that there is a new "default" order, though.  It's entirely possible for the order to change if the query plan changes again.
    Justin
    Well, what happened is we've gotten a few new customers and those customers are on Linux oracle 11g.  All the other customers are on regular unix 10g.  So, it sounds like we've just been lucky with the order until now.  In our system we have a sequence number column which is unique and I solved this by adding that in the ORDER BY clause.  I was just curious as to whether oracle had a default when it found duplicate fields in the ORDER BY clause.  I can't imagine that oracle doesn't have a default like unique_session_id or something like that.

  • How to Retrieve the Selected Values from selectOrderShuttle using ADF 11g

    Hi Every One,
    Does anyone has idea how to retrieve the selected Items using shuttle and Order of the items using 'SelectOrderShuttle' component ?
    Thanks

    shuttle's valuechangeevent would fire when you shuttle items back and forth.
        public void selectOrderShuttle1_valueChangeListener(ValueChangeEvent valueChangeEvent) {
            ArrayList list = new ArrayList(Arrays.asList(valueChangeEvent.getNewValue()));
            if (list != null){
                for (int i=0; i<list.size(); i++) {
                    int l = list.size()-1;
                    val = list.get(l).toString(); //returns , delimited string
                    if (val != null){
                        val = val.replaceAll("[\\[\\]]", "");
                        StringTokenizer st = new StringTokenizer (val, ",");
                        int nto = st.countTokens ();
                        for (int j = 0; j < nto; j++)
                            String token = st.nextToken ();                     
                ..........

  • Select count(*) from table in oracle 11g with direct path read takes time

    select count(*) from table takes long time, even more than couple of hours..
    direct path read is the wait event which is almost is at 99%..
    can u someone provide some info on this.. on solution.. thankx

    knowledgespring wrote:
    table has millions of records... 130 millions..
    select count(*) from BIG_SIZE_TABLE; --- executed in sql plus command prompt.
    Rows     Execution Plan
    0  SELECT STATEMENT   MODE: ALL_ROWS
    0   SORT (AGGREGATE)
    0    TABLE ACCESS   MODE: ANALYZED (FULL) OF 'BIG_SIZE_TABLE' (TABLE)
    Elapsed times include waiting on following events:
    Event waited on                             Times   Max. Wait  Total Waited
    ----------------------------------------   Waited  ----------  ------------
    SQL*Net message to client                       1        0.00          0.00
    enq: KO - fast object checkpoint                1        0.01          0.01
    Disk file operations I/O                       18        0.00          0.00
    direct path read                            58921        0.34        418.54direct path read time waited is : 58921 total time waited: 418.54
    That 418 seconds - not the hours you reported earlier. Is it possible that your connection to the database broke ?
    On a typical system, by the way, you can usually turn one direct read for tablescan into 1MB, so your scan seems to have covered about 59 GB, which seems to be in the right sort of ballpark for 130M rows.
    we have another query and when we test the query execution using v$sql, is_bind_sensitive =N, how to make is_bind_sensitive=Y all the time.. There is a hint /*+ bind_aware */ - I'd have to check whether or not it's documented at present. It might help.
    I would be interested in hearing why you think the hint should be bind sensitive when the optimizer doesn't.
    Regards
    Jonathan Lewis

  • Select in Navigator - wrong focus in 11g

    Hi, when I use "Select in Navigator" Atl+Home in JDev 11.1.1.0.2., appropriate class is correctly found and marked in navigator panel.
    But focus is NOT on navigator panel but in combobox with projects: so I can not simple scroll in navigator panel with arrows as in previous version JDev 10.1.3.
    Is this a bug or requiered feature?
    Thanks for answer,
    Jara

    Hi Jara,
    just playing with this feature in JDev 11.1.1.1.0 and also 10.1.3.3.0 but I getting focus only in project navigator in both. so I think it just navigates to the file - also in older versions
    regards,
    Branislav

  • Select Record Between Date Gap-Oracle 11g, Windows 2008 server

    hello everyone,
    I have a sql query where I need to select only records with an 18 month gap between max(date) and previous date( no dates between max(date)
    and 18 month gap date), when I run the below query it should only select supid 130, not 120 (even though 120 does contain an 18 month gap date it also has a date that is less then the 18 month gap( '25-NOV-2012','DD-MON-YYYY').
    how would get the query to look back 18 months for the next date and evaluate the month_between.
    any help is greatly appreciated.
    example:
    create table supply(supID number(8), supply varchar2(20), supdate Date,supamount number(13,2));
    insert into supply values(100,'Tapes',to_date('01-AUG-2013','DD-MON-YYYY'),50.00);
    insert into supply values(100,'TV',to_date('01-APR-2013','DD-MON-YYYY'),250.00);
    insert into supply values(100,'Discs',to_date('25-DEC-2012','DD-MON-YYYY'),25.00);
    insert into supply values(120,'Tablets',to_date('25-AUG-2013','DD-MON-YYYY'),15.00);
    insert into supply values(120,'Paper',to_date('25-NOV-2012','DD-MON-YYYY'),35.00);
    insert into supply values(120,'Clips',to_date('20-NOV-2010','DD-MON-YYYY'),45.00);
    insert into supply values(120,'Binders',to_date('28-FEB-2012','DD-MON-YYYY'),25.00);
    insert into supply values(130,'Discs',to_date('25-JUL-2013','DD-MON-YYYY'),75.00);
    insert into supply values(130,'Calc',to_date('25-JAN-2012','DD-MON-YYYY'),15.00);
    insert into supply values(130,'Pens',to_date('15-DEC-2011','DD-MON-YYYY'),55.00);
       select * from supply p where to_char(p.supdate,'yyyy')='2013'
       and p.supid in(select s.supid from supply s where months_between(s.supdate,p.supdate)<-18)
         SUPID SUPPLY               SUPDATE    SUPAMOUNT
           120 Tablets              25-AUG-13         15
           130 Discs                25-JUL-13         75

    Something like this?
    select
    from (
    select
      supid
    , supply
    , supdate
    , supamount
    , lead(supdate) over (partition by supid order by supdate desc) ldate
    from supply
    where
    months_between(supdate,ldate) >= 18
    SUPID
    SUPPLY
    SUPDATE
    SUPAMOUNT
    LDATE
    130
    Discs
    07/25/2013
    75
    01/25/2012
    Ok. i see you want only he diff to max date.
    select
    from (
    select
      supid
    , supply
    , supdate
    , supamount
    , lead(supdate) over (partition by supid order by supdate desc) ldate
    , row_number() over (partition by supid order by supdate desc) rn
    from supply
    where
    months_between(supdate,ldate) >= 18
    and
    rn = 1
    Message was edited by: chris227
    extended

  • Capturing data from a select many checkbox using adf components (11g)

    Hi
    I am new to this technology. Can anybody tell me how to capture the data selected in a checkbox
    I have created the checkbox(Af:selectmanycheckbox) using a webservice.
    Thanks,
    Tim

    Hi
    @Jonas : Thanks for the reply
    In the link its setting the values using a backing bean method lyk this
    <af:selectManyCheckbox label="Locations" id="smc1"
    value="#{sessionScope.weatherBean.locationsSelected}">
    <f:selectItems value="#{sessionScope.weatherBean.locationSelectItems}"
    id="si1"/>
    </af:selectManyCheckbox>
    but in my case am populating the values in the checkbox using a webservice
    <af:selectManyCheckbox value="#{bindings.result.inputValue}" --- result is the list binding while adding a webservice to the data control
    label="result" id="smc1">
    <f:selectItems value="#{bindings.result.items}" id="si1"/>
    </af:selectManyCheckbox>
    So for now am getting values like result red,blue green
    now if i want to select red and blue and display it in a text field on the click of a command button.*pls guide me how to save the selected value and display multiple values in a input/outpt text field*

  • Selecting the Report Server in OFM 11g

    In 11g Fusion Middleware is that it consists of two different servers (Standalone and In Process).
    in-process report server is rep_wls_reports_hostname_asinst_frd
    Standalone Report Server is ReportsServer_hostname_asinst_Frd
    Can anyone guide which report server should be use and what are the benefits of it.
    Thanks in advance..

    Hi,
    You can use either one and they will do the same thing. The in-process runs inside WLS_REPORTS managed server and the standalone runs as a separate process so you can admin it easily from the OS standpoint.
    The following are some documents that can help you with more details.
    Reference
    Note: 1269406.1: Summary Information About Different Types and Maintenance of Report Servers in 11.1.1.x
    Summary Information About Different Types and Maintenance of Report Servers in 11.1.1.x (Doc ID 1269406.1)
    Regards

  • How can I programmatically select row to edit in ADF - 11g

    Hello,
    I'm having a table with rowSelection="single" and editingMode="clickToEdit". Currently i'm facing two issues.
    First issue: the first click on a table row makes the row selected, on second click it becomes editable. If I click on another row it gets selected, but previously selected row remains editable. I would like to change this, so when I select another row, the previously selected one to become read-only again. By now, I didn't find any solution to set programmatically the 'editable' state of a row.
    The second issue might be a bug and is related to deleting an editable row. I select a row, click to edit it, and then delete it. The next row get's selected, but clicking on it to edit, has no effect unless I press the 'ESC' select another row before. Does anyone have a tip how to workaround it?
    Thank you very much!
    Eniko

    try adding this method in the table selectionListener.
    public void table1_selectionListener(SelectionEvent selectionEvent) {
        public String getCurrentRow() {
            BindingContainer bindings = getBindingsForDCB();
            RichTable table=table1; 
            DCIteratorBinding outListIter = getBindingsForDCB().findIteratorBinding("outlistOutIterator");
            RowKeySet rowSet = table.getSelectedRowKeys();
            Iterator rowKeySetIter = rowSet.iterator();
            while (rowKeySetIter.hasNext()) {
                    List l = (List) rowKeySetIter.next();
                    Key key = (Key)l.get(0);
                    outListIter.setCurrentRowWithKey(key.toStringFormat(true));   
                    Row r = outListIter.getCurrentRow();
            return null;
        }

  • Various Selections in Combo Box trigger required field

    Can anyone assist me in creating a multiple if/else statement? I have a combo box which lists all departments within my organization. I am needing assistance in creating an if/else statement that basically says if the department name is equal to say Finance, Accounting, Purchasing, etc. that a signature field is hidden because it is not required. However, if the department name were Information Services, Library, etc. the signature field would be required.
    I can get this to work if I use just one value (i.e. Finance), but when I add other values (and I've tried different methods) nothing happens.
    Thank you for any assistance you may provide.

    Check your JavaScript debugger console for errors.
    var s1 = this.getField("RBDeptHdYes").valueAsString;
    var s2 = this.getField("State").valueAsString;
    var s3 = this.getField(CMSignature); // field name must be in quotes
    if ( s1 == "Yes")
    s3.required=true;
    if (s2 != "Texas"); // no ";" here
    s3.required=true;
    if (s1== "Yes" && s2 == "Texas")
    s3.required=true;
    else
    s3.hidden=false;
    I might be easier to crate a control variable that can be set to true or false by each test and then test the control variable at the end.
    var bRequired = false; // assume not required
    this.getField("CMSignature").hidden = true; // hide field
    var s1 = this.getField("RBDeptHdYes").value;
    var s2 = this.getField("State").value;
    if ( s1 == "Yes") bRequired = true; // required
    if (s2 != "Texas") bRequired = true;
    if (s1== "Yes" & s2 == "Texas") bRequired = true;
    if (bRequired) this.getField("CMSignature").hidden = false; // signature is required
    Your script has to be placed in the "mouse up" for the radio buttons and the "blur" action for the state combo box so that when any one of these fields is changed, the script will run. This means that whenever your requirements change, each location will have to be updated unless you use a document level function which is called by each field as needed and then only the function's code would need to be changed.

  • After Trigger Select into issue

    CREATE OR REPLACE TRIGGER "TAB2_AI"
    AFTER INSERT ON Table2
    FOR EACH ROW
    DECLARE
    t1ID number;
    t3Seq number;
    BEGIN
    Select t.id INTO t1ID from Table1 t where trim(upper(name)) = trim(upper(:new.NAME))
    SELECT Table3_SEQ.nextval into t3Seq from dual;
    Insert into Table3(ID,t1ID,t2ID,Active,CreatedDate) Values
    (t3Seq,t1ID,:new.ID,1,sysdate)
    EXCEPTION
    when others then
    raise_application_error(-20004,
    'Error occured! New Row ID = ' || :new.ID );
    END TAB2_AI;
    I am writing after Insert Trigger. I have 3 tables. I need to write after Insert on Table2.
    But in my Table 3 i want to insert table1 ID and table2 ID and other info.
    Now getting the table1 ID is giving the problem. Please See below statement. This is causing the problem.
    Select t.id INTO t1ID from Table1 t where and trim(upper(Dname)) = trim(upper(:new.NAME))
    Could you please tell me the work around how to put select into in a trigger? Any suggestions highly appreciated.
    Edited by: Chris90909 on Jan 29, 2010 9:20 AM
    Edited by: Chris90909 on Jan 29, 2010 9:29 AM

    You said
    Please See below statement. This is causing the problem.
    Select t.id INTO t1ID from Table1 t where and trim(upper(Dname)) = trim(upper(:new.NAME))But in your code you are using following query
    Select t.id INTO t1ID from Table1 t where trim(upper(name)) = trim(upper(:new.NAME))These are 2 different queries. In first one , in where clause you are using column name as Dname and the query you are using in your trigger has column name as name in where clause.

  • Select trigger from database

    Hi,
    We use the command "select text from user_source where name = 'XXX';" to
    get the content of stored proceudure.
    I would like to know the command used to select the content of trigger instead.
    Appreciate your help.
    Thanks.

    Hi,
    Try this code. I think this will solve your problem. Spool the text to a file as it may be difficult for you to read from the SQL prompt.
    SPOOL <LOCATION OF THE FILE>
    set long 50000;
    set lines 1000;
    SELECT TRIGGER_BODY FROM USER_TRIGGERS WHERE TRIGGER_NAME='XXX';
    SET LINES 100;
    SPOOL OFF.
    Regards,
    Jaikanth V Garlapati.

  • Extract trigger DDL from 8i database

    Hi All,
    We are in process of migrating our 8i database's to 11g. for some reason , we excluded triggers while import. now , I need to get all the ddl's from 8i database.
    I think , dbms_metatadata is not there in 8i. using the following script did not help , as it does not append owner to trigger name. this script was taken from Mr Kyte book
    select
    'create or replace trigger ''' ||
    trigger_name || '''' || chr(10)||
    decode( substr( trigger_type, 1, 1 ),
    'A', 'AFTER', 'B', 'BEFORE', 'I', 'INSTEAD OF' ) ||
    chr(10) ||
    triggering_event || chr(10) ||
    'ON ''' || table_owner || '''.''' ||
    table_name || '' || chr(10) ||
    decode( instr( trigger_type, 'EACH ROW' ), 0, null,
    'FOR EACH ROW' ) || chr(10) ,
    trigger_body
    from dba_triggersRegards

    Thanks solomon, but , it still need some correction , I guess..
    create or replace trigger 'UFP"."UFP_TW_COST_AIUDR'
    AFTER
    INSERT OR UPDATE OR DELETE
    ON 'UFP'.'UFP_TGT_WKSHT_COST
    FOR EACH ROW
    DECLARE
       action_flag UFP.UFP_TGT_WKSHT_COST_AUDIT.ACTION%TYPE;
    BEGIN
       IF DELETING THEN
          insert into UFP.UFP_TGT_WKSHT_COST_AUDIT
             (PROJNO, REVNO, LINE_NUMBER, OPTION_NUMBER, COST, SKU_NUMBER, USERID,
             TIMESTAMP, ACTION)
             values
             (:old.PROJNO, :old.REVNO, :old.LINE_NUMBER, :old.OPTION_NUMBER, :old.COST, :old.SKU_NUMBER, USER,
             SYSDATE, 'DEL');
       ELSE
          IF INSERTING THEN
             action_flag := 'INS';
          ELSE
             action_flag := 'UPD';
          END IF;
          insert into UFP.UFP_TGT_WKSHT_COST_AUDIT
             (PROJNO, REVNO, LINE_NUMBER, OPTION_NUMBER, COST, SKU_NUMBER, USERID,
             TIMESTAMP, ACTION)
             values
             (:new.PROJNO, :new.REVNO, :new.LINE_NUMBER, :new.OPTION_NUMBER, :new.COST, :new.SKU_NUMBER, USER,
             SYSDATE, action_flag);
       END IF;
    END;
    create or replace trigger 'UFP"."UFP_TW_COST_AIUDR'
    ERROR at line 1:
    ORA-04070: invalid trigger name

Maybe you are looking for

  • ITunes 7.5 messes up audio configuration

    I'm kind of stuck in a hole here. With the previous iTunes version, I could not access the iTunes store for some reason. I upgraded my iTunes to 7.5, but now, every time I try and open it, it says it has detected a problem with my audio configuration

  • Data from Access to Excel

    I hope someone can help me. I am developing an automatic relationship between our Access database and a permanent data tracking Excel spreadsheet. One very big component of our data tracking is a daily morning inventory of specific case types. The pr

  • Migration Assistant using HD mounted in windows

    Hello, I just ordered a new HD and ram. I'm very excited about all of this but I really don't wish to have to reinstall everything and dig up old keys and the like. This is especially true for my keychain since I am on many different wireless network

  • PS Scheduling via Windows Task Scheduler

    Hi All, I have been pulling my hair out trying to schedule my APIWSUSCleanup.ps1 file from this thread (http://social.technet.microsoft.com/Forums/en-US/eee88f8a-57de-46db-8d60-efb0e72d57b9/running-5-commands-using-array-elements-and-waiting-between?

  • Fetching mail from a mail server

    Hai, I've tried to fetch the mail from my inbox which belongs to the MODOMAIL server. I've write code for that.But iam not able to dwnload.Whenever i tried that program The following exceptions are occured. NORoute to host Exception : Operation timed