Constraint Prob -Please help

Can we check default value while adding constraint in oracle9i like below example is in SQL and doing that.
ALTER TABLE dbo.AdjustmentReasons WITH NOCHECK ADD
CONSTRAINT DF_AdjustmentReasons_IAdjustmentType
DEFAULT (0) FOR IAdjustmentType,
CONSTRAINT DF_AdjustmentReasons_FLogicalAdjustment
DEFAULT (0) FOR FLogicalAdjustment,
CONSTRAINT DF_AdjustmentReasons_fGenerateAdvice
DEFAULT (0) FOR fGenerateAdvice,
CONSTRAINT DF_AdjustmentReasons_IForceBalType
DEFAULT (0) FOR IForceBalType,
CONSTRAINT IForceBalType_chk CHECK (IForceBalType >= 0
and IForceBalType <= 2),
CONSTRAINT DF_AdjustmentReasons_ILogicalInsertShortCutKey
DEFAULT (255) FOR ILogicalInsertShortCutKey,
CONSTRAINT DF_AdjustmentReasons_FLogicalInsertAutoPosition
DEFAULT (0) FOR FLogicalInsertAutoPosition
Can we do like
alter table <tablename> add constraint CON check (<fieldname> default 0))

I don't understand the problem here.<br><br>
In Constraint problem you got some examples already.<br>
What exactly is not clear to you ?<br><br>
Regards,<br>
Rob.

Similar Messages

  • Advice needed on possible virus related prob - please help!

    Evening everyone,
    I previously posted on here about an issue I was having with my external hard drive not mounting. I erased it and got it to mount but now I get an error message saying File could not be transferred as it could not be read or written.
    I have recently come to suspect I might be harbouring viruses on my macbook as one turned up on my pendrive and on some email attatchments I've sent and was wondering if you think this could be causing the problem with the hard drive? If not - what might be? I've read that some people think it's a prob with tiger. Also can anyone recommend some virus software? I know a lot of people use clam but does that work with intel macs? Also I don't know much about the technical side of things and it doesn't look too user friendly - do you think it would be worth buying a full package like Norton?
    Thanks in advance for all of your help!

    Hi Sherman,
    Thanks for your help! The ignore ownership box was already ticked. Tried to repair the disk and it did find errors but the repair did not work - it says that the underlying task report failure on exit. Any more suggestions? Is it not possible that I am harbouring a PC virus - it isn't affecting my mac but could it not be playing havoc with the hard drive? Or is that just broken and I should send it back?
    I am currently studying in spain for the year but am from the UK and will be back there this weekend so am hoping to sort the problem out before then, or go visit the genius bar in london while I am home.
    Thanks again!

  • [SIS Series] SIS 648 Max-L MS-6585 mobo probs. please help.

    I have been having tons of issues with this mobo.  First off when playing a simple game such as starcraft, it will either restart randomly, or perform an illegal operation.  It has massive probs playing any games more complex than that, which is sad.  I also had alot of problems with installation of win xp pro.  some files failed to copy. Install finally worked but after many tries. some help would be great. thanks.
    it had a 2.0ghz 400mhz fsb intel celeron processor but was changed out with a 2.26ghz p4 proc
    so heres the specs on this computer
    power supply
    tigerpro 350 watts
    vid card
    Abit siluro gf4mx-se
    hard drive
    80gb western digital wd800
    Hitachi 8x dvd rom drive
    generic firewire card
    s-braket installed
    d-braket installed
    2.26ghz 533fsb 512k l2 pentium 4 proc w/ stock heatsink+fan
    memory
    spectek select 512mb which worked in 2 other systems flawlessly
    OS
    presently a dual boot system with win xp pro and suse linux
    oringinally had just winxp pro and had same issues as stated before

    see i dont kno.  its a 350w psu, and it seems almost as if the ram bank is bad, ie the slot where the ddr mem goes.  i change it to a diff bank and it works.  starts up fine. but the next restart, will not run.  see this is what happens. 
    1 turn on the computer. it will just sit there with no cmos/post beep and no bios for the mobo or vid card appears on screen.  hdd and dvd rom get power as well as the fans
    2 the d-bracket 4 leds read all green, signifying that the cpu or heatsink is bad or not installed properly.
    sometimes ill release the tension on the heatsink and move it around(the heatsink) then turn it on with the tension loose, and seems to do better like that. plus it will boot. also, another time and pretty much every time since my first post, it seems to start up all the devices, but no boot.  I initially thought it was the cpu so i changed that out with another that was known good. then it worked marvelously, but after another restart, refused to start at all.  Then after reading the other moderators post i realized it could be the ram.  I had the same issue with this board before, before it was RMAed mind you, where it wouldnt work, so i moved the ram to a diff slot and it worked.  same case with this new mobo.  it started up fine.  then same prob arose, but this time, no matter what would not start until i put the new kingston ram in. then i ran that memtest prog.  finished, got to 100%, and kept counting, but couldnt stop it or reboot from the menu, so i hit the reset button, prolly not the best idea, but i didnt have a choice.  im not quite sure if the ram passed or not, but immediatly after gave me tons of probs.  boots runs Suse linux, but wont run windows.  As soon as it loads it instantly restarts.  this happend even in safe mode.  this mobo was originally in the computer i have now, and i think its the same wattage and amperage as the one in the msi mobo case.  the reason y i dont see it being the psu is bc im currently runnin a 3.0ghz p4 1 sata 2 eide ok vid card a dvdburner and a cdrw.  alot more than this system, but never gave me any probs. but who knows i could be wrong.  I appologize for the long post.  but i am totally stumped on this one.  but it just seems to me like this mobo series (648max-l) is just way buggy.  i have had issues with this mobo from day one. as well as the one(exact model) before it.  If i have to put anymore money into this mobo, it jsut isnt worth it to me anymore.  i will prolly just  buy a diff mobo all together.  as always any help or suggestions are very much appreciated.  once again i appologize for the lengthyness, but i hope this will aid you in your diagnostic.  thanks again!

  • For loop prob - PLEASE HELP!

    I am having problems with a for loop. This for loop is nested within some other for loop. the problem I'm having is that the for loop executes once and then exits to execute the outer for loop. my initial reaction was that my condition (in the for loop ) was false the second time round thus resulting in the exit. I'm usually told to paste some code so i'll do that:
    for (int i=0; i<row.size(); ++i){
      for (int all = 1; all < row.size();all++){
       try{          
         for (int k=0; k< column.size();  k++){
         System.out.println(" column size " + column.size());
         Long longObject1 = (Long)((Vector)row.get(i)).get(k);
         System.out.println(" getting" + longObject1);
    }                              �
         for (int k=0; k< column.size(); k++){ is the loop causing me problems.  column.size() evaluates to 2 so what is the problem?

    No I don't think there is another thread effecting column -I have even placed a Println to show what the value of column is. At present the value of column is 2 so the for loop should execute twice.
    I have a catch block which catches ClassCastException. The second element in row is not null. Furthermore, the size of count is 2 so the for loop should execute twice.
    yes the first element in row is another vector. (Row is a vector of vectors). I've looked at the other suggestions too but even after considering these i am left with the same problem. Any other suggestions? I could do with all the help I can get. Thanks

  • Hardware Failure - Now having db probs - Please Help!

    First of all, we have no in-house Oracle expertise. Our in-house staff are versed in MS SQL Server.
    We had a motherboard failure on our Oracle 9i server (release 9.2.0.1.0), which was replaced. There are two instances on this server. When we tried to log on to the server, we got the following error:
    ORA-01033: Oracle initialization or shutdown in progress.
    Then, someone tried to force a shutdown and force a start. Now we're getting the following error:
    ORA-00214 control file 'd:\oracle\oradata\intgback\control02.ctl' version 253
    inconsistent with file 'd:\oracle\oradata\intgback\control01.ctl' version 247
    Is there a utility to repair this or something we can do? We are running in the mode that does not have a recovery log.
    Any help would be greatly appreciated.
    Thank you!
    Leslie

    First, just in case, take a backup of all your Oracle database files with the database shutdown (i.e. control files, redo logs, data files).
    Next, at the O/S command line or Windows explorer rename
    d:\oracle\oradata\intgback\control01.ctl to d:\oracle\oradata\intgback\control01.bak
    Next, copy d:\oracle\oradata\intgback\control02.ctl to d:\oracle\oradata\intgback\control01.ctl
    Then try to restart your database.
    HTH
    John

  • XP2500 overclock prob please help!!

    Ok i have an XP2500 and am able to get 10 x 200 at 1.675 stable at am unable to go any hight no matter what i seem to do.  I have tried 10.5 x 200 at1.725 volts still no joy.  I have a MSI K7N2 ILSR Delta board with DDR 400 Geil GD memory any ideas or have I just got a duff Barton.

    I was trying the same thing today. Using a KT6 Delta.  I had the EXACT same results.  I had just gotten a nice Thermalright ALX-800 with a panaflo and borrowed a friends old 2500+ (he bought a moble !!) that had been running at 200x11 for months on an albatron nforce board.
    No matter what I could not get over 2ghz on reguardless of what we tried. I thought it was my board since the cpu had done this before.  
    Well anyway I started playing with my 2600+ and found I could not turn up the multiplier but I could turn it down!!!
    It runs PERFECT at [email protected] and [email protected]!  I really couldnt believe how easily it overclocked.  But it is a t-bred so I do lose some performance over a barton but hey ya can't have everything !
    Since I didnt have to buy my friends 2500+ I picked up a MSI FX5900XT instead  .

  • Prob with iTunes on Vista! Please Help!

    hi guys,
    i am getting the following error message when i install iTunes 7.5 version
    [IMG]http://img403.imageshack.us/img403/8344/itunesprobbo9.jpg[/IMG]
    i also tried iTunes 7.4 version but i am getting the same error message
    iTunes used to work before, but suddenly the prob
    i tried unistalling and installing the app again but in vain...
    Please Help!
    Thanks in advance!
    -Manish

    “iTunes.exe – Bad Image” ... “C:\Windows\system32\mssip32.dll is either not designed to run on Windows or it contains an error. Try installing the program using the original installation media or contact our system administrator or the software vendor for support.”
    Okay. Literally, it's saying that one of the dlls associated with Cryptographic Services on the PC is damaged. That can cause an iTunes launch failure.
    ... However, most of our experience here at Discussions is with troubleshooting these sorts of messages on Windows XP systems, rather than Vista and I don't have a Vista box handy for reference.
    So, if you don't receive any further replies here, it might be best to try posting instead at the Windows Vista Community Discussions Groups. Fingers crossed someone there might be better placed to help you troubleshoot this:
    http://windowshelp.microsoft.com/communities/newsgroups/en-us/default.mspx
    (Not trying to get rid of you here, just trying to get you on the radar screens of people who might be in a better position to help.)

  • URGENT please help Prob in implementing fi validation checking - zrggbr000

    Hi SAP Expert,
    I'm currently working on FI Validation checking (ZRGGBR000) to control amount posted to asset number. Thus, I use an internal table declared in ZRGGBR000 to keep all the balance to be posted from 1 FI doc no and compare it with the limit (taken from customized table). But i'm having a prob,specifically while doing several Goods Issue (GI) posting continously without leaving the transaction MIGO. This is because the internal table i declared previously in ZRGGBR000 was not refresh automatically. The same thing happens while i'm doing the SES (ML81N).
    Is there any way i can do to refresh this internal table?
    any help, assistance and guidances are very much appreciated and will be very greatfull for the fast reply.
    thanks & rgds,
    fn
    Message was edited by:
            fnr n

    Hi SAP Expert,
    Really need your advice and guidance, Please help me.  I'm currently working on FI Validation checking (ZRGGBR000) to control amount posted to asset number. Thus, I use an internal table declared in ZRGGBR000 to keep all the balance to be posted from 1 FI doc no and compare it with the limit (taken from customized table). But i'm having a prob,specifically while doing several Goods Issue (GI) posting continously without leaving the transaction MIGO. This is because the internal table i declared previously in ZRGGBR000 was not refresh automatically. The same thing happens while i'm doing the SES (ML81N).
    Is there any way i can do to refresh this internal table?
    For help, assistance and guidances are very much appreciated and will be very greatfull for the fast reply.
    thanks & rgds,
    fn

  • Create a table from another table and add constraint statement. Please help

    Previously, I post a question and it works as below:
    create table my_table
    PCTFREE 10 PCTUSED 0 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE
    INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT
    TABLESPACE TAB_DATA
    as select t1, t5, t2, t3, t4 from orig_table;
    I have been trying to use the same strategy as I post earlier, but it doesn't work.
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    Below iis my SQL statement, but it doesn't work. Please help.
    create table my_table
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    as (select t1, t5, t2, t3, t4 from orig_table;

    Hi,
    Why do you need to combine the two action togather. You can get the things done in two steps.
    Create table tab1 as select * from tab2;
    Then you create any contraint that you want to create on tab2 using 'alter table add constraint'.
    Regards

  • Getting PROBE TIMEOUT Error....please help me out...It is urgent

    Hello,
    I'm running a stored procedure in oracle 10G that select data from one table and inserts the selected data into another table. The procedure populates for a short while and then I get the following messages:
    1. probe: timeout Occurred
    2. probe: Exception raised in the DBMS_DEBUG package
    Why is this happening and what should I do to resolve the above issue?
    Please help me out....This is really urgent...
    Thanks a lot in advance....
    Regards,
    Suranjita

    Please check Database alert log to see if any error is raised ?

  • I can not connect my i phon with my pc it shows athorised computer when i am trying to do authorised process the process done but again i connect my phon again show this errore please help me to solve my prob....

    i can not connect my i phon with my pc it shows athorised computer when i am trying to do authorised process the process done but again i connect my phon again show this errore please help me to solve my prob....

    I have clicked on the  connect button, but it brings up the same There is a problem connecting,  and I have also tried SMB://
    i tried pinging the ip address with in termial and it times out.  
    From my windows PC and I can access my MacBook Air just fine,

  • HT4623 i have done update my IOS, but is not activate yet... i have had try so many time but always fail..i dunno what method supposed i do..please help me to solve this prob. tq

    i have done update my IOS, but is not activate yet... i have had try so many time but always fail..i dunno what method supposed i do..please help me to solve this prob. tq

    You can't if your iPhone was hacked/jailbroken to unlock.

  • Integration Probs in Jdev 11g with Struts. Please Help

    HI All,
    I am trying to make a trial application using Struts 10.3 in Jdev 11g.
    I created the web application using Jdev wizard But didn't select Struts as Technology. Then I downloaded the Struts Jar files and copied them to the lib directory under WEB-INF directory in my sample applicatio.
    But When I am trying to importorg.apache.struts.action.ActionForm and extend ActionForm in my Bean I getting below error:
    Error(2,32): package org.apache.struts.action does not exist
    Error(3,36): cannot find symbol
    My Bean is simple as below:
    package projectname.nano.common;
    import org.apache.struts.action.ActionForm;
    public class InputFormBean extends ActionForm
    Then I thought that compiler might not be able to integrate the copied jars. So I went Applications->Defalut Project Properties and include the lib directory of my application .
    Still Probs persists. PLease help as I m stuck here.

    After I solved above probs I am getting new prob when I try To RUN my application. Followin is the error I m gettin:
    'ManualStruts1-projectname-context-root''
    weblogic.application.ModuleException: Failed to load webapp: 'ManualStruts1-projectname-context-root'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:404)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:507)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: javax.faces.webapp.UIComponentTag
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:280)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         Truncated. see log file for complete stacktrace
    >
    <9 Oct, 2011 2:03:37 PM IST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'ManualStruts1'.>
    <9 Oct, 2011 2:03:37 PM IST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: Failed to load webapp: 'ManualStruts1-projectname-context-root'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:404)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:507)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: javax.faces.webapp.UIComponentTag
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:280)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         Truncated. see log file for complete stacktrace
    >
    [02:03:37 PM] #### Deployment incomplete. ####
    [02:03:37 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    #### Cannot run application ManualStruts1 due to error deploying to IntegratedWebLogicServer.
    [Application ManualStruts1 stopped and undeployed from Server Instance IntegratedWebLogicServer]
    Please Help

  • Results for my browser has prob with 1st inch and harf from new babbilon crap will not hipolink i can not sign in or register on any thing please help

    results for my browser has prob with 1st inch and harf from new babbilon crap will not hipolink i can not sign in or register on any thing please help

    has anyone solve this problem? i upgraded my iphone 4 to 5.1.1 and now i can see only ""We're sorry, we are unable to continue with your activation at this time.  Please try again later, or contact customer care."
    i tried mani sim card, laptops, wifi. but for 7 days the problem is still exist....
    Please help me!!!

  • Please help me  with this prob "Bank Account"

    please help me..... i create a bank account which can be save in sql and can view the list of account num, deposit, withdrawal . i dont know how to insert save buttons code ...i have a code here:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class GuiAccTest extends Frame implements ActionListener
    Label lab=new Label(" ");
    Label lab1=new Label(" ");
    TextField t[]=new TextField [4];
    Label l[]=new Label [4];
    Button but=new Button("Create Account");
    Button but1=new Button("Test Account");
    BankAccount b;
    GuiAccTest()
    addWindowListener(new NewWindowAdapter());
    setLayout(new GridLayout(2,0));
    Panel p=new Panel();
    Panel p1=new Panel();
    but.addActionListener(this);
    but1.addActionListener(this);
    p.setLayout(new GridLayout(5,2));
    p1.add(lab1);
    p1.add(lab);
    l[0]=new Label("Account Number");
    l[1]=new Label("Initial Balance");
    l[2]=new Label("Deposit Amount");
    l[3]=new Label("Withdraw Amount");
    for(int i=0;i<4;i++)
    t=new TextField(10);
    p.add(l[i]);
    p.add(t[i]);
    p.add(but);
    p.add(but1);
    but1.setVisible(false);
    l[2].setVisible(false);
    l[3].setVisible(false);
    t[2].setVisible(false);
    t[3].setVisible(false);
    add(p);
    add(p1);
    String testAccount(int d_amt,int w_amt)
    String msg;
    b.deposit(d_amt);
    msg="Transaction Succesful";
    try
    b.withdraw(w_amt);
    }catch(FundsInsufficientException fe)
    fe=new FundsInsufficientException(b.amount,w_amt);
    msg=String.valueOf(fe);
    return msg;
    public void actionPerformed(ActionEvent ae)
    String str=ae.getActionCommand();
    if(str.equals("Create Account"))
    b=new BankAccount(Integer.parseInt(t[0].getText()),Integer.parseInt(t[1].getText()));
    but1.setVisible(true);
    l[2].setVisible(true);
    l[3].setVisible(true);
    t[2].setVisible(true);
    t[3].setVisible(true);
    but.setVisible(false);
    l[0].setVisible(false);
    l[1].setVisible(false);
    t[0].setVisible(false);
    t[1].setVisible(false);
    lab1.setText("Account : "+b.accnum+", Current Balance : "+b.amount);
    return;
    else
    lab.setText(testAccount(Integer.parseInt(t[2].getText()),Integer.parseInt(t[3].getText())));
    lab1.setText("Account : "+b.accnum+", Current Balance : "+b.amount);
    public static void main(String arg[])
    GuiAccTest at=new GuiAccTest();
    at.setTitle("Bank Account Tester");
    at.setSize(600,200);
    at.setVisible(true);
    class NewWindowAdapter extends WindowAdapter
    public void windowClosing(WindowEvent we)
    System.exit(0);
    class BankAccount
    int accnum;
    int amount;
    BankAccount(int num,int amt)
    accnum=num;
    amount=amt;
    public void deposit(int amt)
    amount=amount+amt;
    public void withdraw(int amt) throws FundsInsufficientException
    if(amt>amount)
    throw new FundsInsufficientException(amount,amt);
    else
    amount=amount-amt;
    class FundsInsufficientException extends Exception
    int balance;
    int withdraw_amount;
    FundsInsufficientException(int bal,int w_amt)
    balance=bal;
    withdraw_amount=w_amt;
    public String toString()
    return "Your withdraw amount ("+withdraw_amount+") is less than the balance ("+balance+"). No withdrawal was recorded.";

    It depends on what country you're in and whether or not they're still available in the iTunes Store. Some purchased movies and all rentals won't be available.
    (108225)

Maybe you are looking for

  • ITunes was not installed correctly error 7 Windows error 5

    , how do i fix this? ive tried everything from security to uninstalling , im tired of going through all these discussion pages trying to fix it because nothing ever works. ive tried revo uninstaller, winRAR, and just uninstalling in general, please h

  • In Calendar Items Are Not Shown

    Iphone4-calendar does not show any items. Synchronization between IPhone-contacts and Outlook 10-contacts is OK. I already reinstalled ITunes, several Apple-Software Application and Office 2010; The outlook iTtunes Outlook Add Ins are active; Who can

  • Call C# method from javascript in WebView and retrieve the return value

    The issue I am facing is the following : I want to call a C# method from the javascript in my WebView and get the result of this call in my javascript. In an WPF Desktop application, it would not be an issue because a WebBrowser (the equivalent of a

  • Deleteing Photoshop Elements 4.01 on a Mac

    Any idea's on how I should go about deleteing Photoshop Elements 4.01 on a Mac that now has Photoshop Elements 6.00 installed on it without screwing up the Photoshop Elements 6.0 installation?

  • Starting Process Flows with a database trigger

    Hi all, Is it possible to start a process flow using a trigger? I am using the sqlplus_exec_template.sql at the moment. Thanks in advance, Regards, Sebastian