Shutdown hangs after drop column

Hi,
We were trying to drop column on a very big table, after that we cancelled that operation, and given shutdown immediate command.
Now shutdown is taking too much time, going on from last 9 hours.....
We want to start the database, what can be the best possible solution.
Shutdown abort and startup will help ?
Thanks
Dilipkumar Patel.

We were trying to drop column on a very big table, after that we cancelled that operation, and given shutdown immediate command.I guess SMON was doing rollback the transaction when you cancelled the operation. Since it was a big table, it was taking lot of time.
Can you check the alter log is there any error or info msg in it?
I am afraid if you give shutdown abort, may cause serious issues.
Before you execute 'shutdown abort', make sure you have good backup, in case of recovery.
Jaffar

Similar Messages

  • Bug-Report: Hyper-V - VM shutdown process hangs after unmount ISO file on host computer

    Hello Microsoft team,
    my HYPER-V VM hangs after I did follow things:
    First I mount an ISO file into my Windows 8.1 Enterprise host (e.g. drive letter X:)
    Now I mount X: into my VM (gen. 1)
    Then I lost connection to X: on my host (e.g. unmount X: on my host computer)
    Now when I shutdown my VM, it will be hangs.
    I reproduced this on three computers with windows 8.1.
    Thanks for help and feedback,
    Gunnar

    Hello Gunnar,
    What do you mean about the sentence ‘mount X: into my VM (gen. 1)’?
    If I mount the Windows 8.1 ISO to drive H:, and then try to install the VM gen 1, it has no issues.
    If I just install the VM gen1 by using the Windows 8.1 ISO that have been mounted to drive H:, I still can’t find the issue.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Firefox regularly hangs after an unspecified period of use, and causes other programs to hang, and a forced system shutdown is necessary.

    The firefox browser hangs after an unspecified period of time. Anything from a few minutes after system startup, up to 5-6 hours of use or perhaps more. Attempting to use other programs including windows explorer while firefox is hanging causes those programs to hang also, making a forced shutdown necessary. Occaisionally I've noticed firefox will respond, perhaps after 10 or more minutes. There seems to be no hard disk activity while the program hangs. Memory usage of firefox on my system is usually upwards of 190,000.

    I have circumvented this mostly by running internet explorer, and using Firefox only for browsing when I need to make use of it's addons. In this way I've had the problem re-occur maybe once or twice in the past two weeks. It's not really a solution but it does seem to help, and I'm no longer sure the problem IS firefox but using it certainly exacerbates the problem.
    I've only just updated to firefox 6, so I am not entirely sure how that will go just yet.

  • Queries on oracle hang after index creation

    Hi,
    I have a problem where queries issued on an oracle database hang after I create indexes on some of the tables used by these queries.
    I have a script where I drop indexes :
    DROP INDEX EVP_PCON00_CDSITC_IX;
    DROP INDEX EVP_PCS202_STIMP1_IX;
    DROP INDEX EVP_PECT00_ONAECT_IX;
    DROP INDEX EVP_PVAL01_ONAVAL_IX;
    After this script I load data into those tables.
    Then I launch another script where I recreate the indexes I just dropped :
    CREATE INDEX EVP_PCON00_CDSITC_IX  ON EVP_PCON00(CDSITC) TABLESPACE TS_ODS_INDEX;
    COMMIT;
    CREATE INDEX EVP_PCS202_STIMP1_IX  ON EVP_PCS202(STIMP1) TABLESPACE TS_ODS_INDEX;
    COMMIT;
    CREATE INDEX EVP_PVAL01_CDORIV_IX  ON EVP_PVAL01(CDORIV) TABLESPACE TS_ODS_INDEX;
    COMMIT;
    When the script ends, I try to execute a query using some of the tables I created indexes on :
    SELECT ...
    FROM ....
    WHERE ....
    The query never return a result set, it just hangs, I look at the session browser in toad and the scan of the first table used in the query hangs.
    When I drop those indexes and re execute the query everything works fine.
    Thanks
    Edited by: 946359 on Jul 13, 2012 9:20 AM

    This is the result I get :
    Execution Plan
    Plan hash value: 1198043594
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 1343 | 12 (17)| 00:00:01 |
    | 1 | HASH UNIQUE | | 1 | 1343 | 12 (17)| 00:00:01 |
    |* 2 | HASH JOIN OUTER | | 1 | 1343 | 11 (10)| 00:00:01 |
    | 3 | NESTED LOOPS OUTER | | 1 | 1257 | 9 (12)| 00:00:01 |
    | 4 | NESTED LOOPS OUTER | | 1 | 1033 | 8 (13)| 00:00:01 |
    | 5 | NESTED LOOPS OUTER | | 1 | 809 | 7 (15)| 00:00:01 |
    |* 6 | HASH JOIN | | 1 | 585 | 6 (17)| 00:00:01 |
    | 7 | NESTED LOOPS | | | | | |
    | 8 | NESTED LOOPS | | 1 | 490 | 3 (0)| 00:00:01 |
    | 9 | TABLE ACCESS FULL | EVP_PTIP00 | 1 | 452 | 2 (0)| 00:00:01 |
    |* 10 | INDEX RANGE SCAN | EVP_PTIC00_CDROLE_IX | 1 | | 1 (0)| 00:00:01 |
    |* 11 | TABLE ACCESS BY INDEX ROWID| EVP_PTIC00 | 1 | 38 | 1 (0)| 00:00:01 |
    | 12 | TABLE ACCESS FULL | EVP_PTIF00 | 1 | 95 | 2 (0)| 00:00:01 |
    |* 13 | TABLE ACCESS BY INDEX ROWID | EVP_PTAB00 | 1 | 224 | 1 (0)| 00:00:01 |
    |* 14 | INDEX RANGE SCAN | EVP_PTAB00_CLTABL_IX | 1 | | 1 (0)| 00:00:01 |
    |* 15 | TABLE ACCESS BY INDEX ROWID | EVP_PTAB00 | 1 | 224 | 1 (0)| 00:00:01 |
    |* 16 | INDEX RANGE SCAN | EVP_PTAB00_CLTABL_IX | 1 | | 1 (0)| 00:00:01 |
    |* 17 | TABLE ACCESS BY INDEX ROWID | EVP_PTAB00 | 1 | 224 | 1 (0)| 00:00:01 |
    |* 18 | INDEX RANGE SCAN | EVP_PTAB00_CLTABL_IX | 1 | | 1 (0)| 00:00:01 |
    | 19 | TABLE ACCESS FULL | EVP_PRIB00 | 1 | 86 | 2 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - access("EVP_PRIB00"."NOTIER"(+)="EVP_PTIP00"."NOTIER")
    6 - access("EVP_PTIF00"."NOTIER"="EVP_PTIP00"."NOTIER")
    10 - access("EVP_PTIC00"."CDROLE"='EMP')
    11 - filter("EVP_PTIC00"."CDDDRX"='CL' AND "EVP_PTIP00"."NOTIER"="EVP_PTIC00"."NOTIER")
    13 - filter("EVP_PTAB00_SITF"."CDTABL"(+)="EVP_PTIP00"."CDSITF")
    14 - access("EVP_PTAB00_SITF"."CLTABL"(+)='SITF')
    15 - filter("EVP_PTAB00_TITR"."CDTABL"(+)="EVP_PTIP00"."CDTITR")
    16 - access("EVP_PTAB00_TITR"."CLTABL"(+)='TITR')
    17 - filter("EVP_PTAB00_RMAT"."CDTABL"(+)="EVP_PTIP00"."CDRMAT")
    18 - access("EVP_PTAB00_RMAT"."CLTABL"(+)='RMAT')

  • Drag and drop column header in a table

    Hi all,
    I need to drag the Column header in a table dynamically. When I drag the column
    out of the table, The table should be rearranged accordingly
    NOTE: The output is displayed in the form of XML(XSL).
    Pls help me solve the problem .
    Thanks in advance,
    Ganesh

    You can implement DropTargetListener, DragSourceListener, DragGestureListener like the following:
    public class MyTree extends JTree
                implements DropTargetListener, DragSourceListener, DragGestureListener {
        public void dragEnter (DropTargetDragEvent event) {
            event.acceptDrag (DnDConstants.ACTION_MOVE);
        public void dragExit (DropTargetEvent event) {
            //System.out.println( "dragExit");
        public void dragOver (DropTargetDragEvent event) {
        public void drop (DropTargetDropEvent event) {
            // place your code for action after drop
        public void dropActionChanged ( DropTargetDragEvent event ) {
        public void dragGestureRecognized( DragGestureEvent event) {
        public void dragDropEnd (DragSourceDropEvent event) {  
        public void dragEnter (DragSourceDragEvent event) {
            //System.out.println( " dragEnter");
        public void dragExit (DragSourceEvent event) {
            //System.out.println( "dragExit");
        public void dragOver (DragSourceDragEvent event) {
            //System.out.println( "dragExit");
        public void dropActionChanged ( DragSourceDragEvent event) {
            //System.out.println( "dropActionChanged");
    }Hope this can help.

  • Sqlldr hangs after import

    Well I wrote a ShellSkript that downloades the data from a SFTP Server and then uses the sqlldr to import the data.
    The Problem is : The sqlldr script does not end. It "hangs" after trying to import all lines.
    Here is the Screen :
    Verwerk shop_orders_2008-03-09_150000_2008-03-10_010000_postpaid_1205107921.csv
    SQL*Loader: Release 9.2.0.7.0 - Production on Mon Mar 10 12:47:49 2008
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Commit point reached - logical record count 25
    Commit point reached - logical record count 50
    Commit point reached - logical record count 54
    Commit point reached - logical record count 55
    Here is the matching Log :
    Record 49: Rejected - Error on table DM_WEBSALES_POSTPAID_LOAD.
    ORA-00001: unique constraint (HANS.PK_WEBSALES_POSTPAID_LOAD1) violated
    Record 50: Rejected - Error on table DM_WEBSALES_POSTPAID_LOAD.
    ORA-00001: unique constraint (HANS.PK_WEBSALES_POSTPAID_LOAD1) violated
    Record 51: Rejected - Error on table DM_WEBSALES_POSTPAID_LOAD.
    ORA-00001: unique constraint (HANS.PK_WEBSALES_POSTPAID_LOAD1) violated
    Record 52: Rejected - Error on table DM_WEBSALES_POSTPAID_LOAD.
    ORA-00001: unique constraint (HANS.PK_WEBSALES_POSTPAID_LOAD1) violated
    Record 53: Rejected - Error on table DM_WEBSALES_POSTPAID_LOAD.
    ORA-00001: unique constraint (HANS.PK_WEBSALES_POSTPAID_LOAD1) violated
    Record 54: Rejected - Error on table DM_WEBSALES_POSTPAID_LOAD.
    ORA-00001: unique constraint (HANS.PK_WEBSALES_POSTPAID_LOAD1) violated
    Record 55: Rejected - Error on table DM_WEBSALES_POSTPAID_LOAD, column TRANSFERT_ACCEPT_CONDITIONS.
    ORA-01401: inserted value too large for column
    Table DM_WEBSALES_POSTPAID_LOAD:
    0 Rows successfully loaded.
    55 Rows not loaded due to data errors.
    0 Rows not loaded because all WHEN clauses were failed.
    0 Rows not loaded because all fields were null.
    Space allocated for bind array: 251550 bytes(25 rows)
    Read buffer bytes: 1048576
    Total logical records skipped: 1
    Total logical records read: 55
    Total logical records rejected: 55
    Total logical records discarded: 0
    Run began on Mon Mar 10 12:47:49 2008
    Run ended on Mon Mar 10 12:47:49 2008
    Elapsed time was: 00:00:00.46
    CPU time was: 00:00:00.01
    Ok, I see that I've imported the same data many times (as you can see in the key violation) but nevertheless the script should end...
    Have any ideas ???
    Thanks in advance,
    Carsten

    Well.... thanks for the help but it has been another problem (hanging sql+ session after sqlldr Command).
    Sorry guys!!
    - can be closed -

  • Safari Hangs after deleting :Awesome" but works for few when restrating

    Safari Hangs after deleting"Awesome" but works for few minutes once shutdown and restart

    I tried to look at other similar problems and tried to play around with it.
    What I noticed was that I deleted the application but did not uninstall the extension.
    Now I have now uninstalled the extension and Safari is back to normal.
    Thanks Andy for your response

  • Drop Column

    Hi,
    We have a table of size above 500GB. To satisfy some business need there was a requirement to drop one column. The column needed to be dropped contained huge data. Hence before dropping the column it was made unused and then we tried to drop the same. At this point we are facing some issues. The drop unused column has been executed before 18 hours and till now it is not completed.
    Suspecting some discrepancy the session conducting the drop command has been killed. Now the table could be described but we are not able to select the table. I am providing the steps followed so far.
    First the column was set to unused:
    SQL> alter table table_name set unused (column_name);
    At some later time the drop command had been executed:
    SQL> alter table table_name drop unused columns checkpoint 1000;
    The above statement was running for last 18 hours and till now not completed.
    Then the corresponding session was killed.
    After this the table could be described but select operation could not be performed and returned the following error:
    ORA-12986:
    columns in partially dropped state. Submit ALTER TABLE DROP COLUMNS CONTINUE
    The above command was also executed but without any sign of completion and again killed.
    DB Version: 10.2.0.3.0
    OS: Sun Solaris 10
    Environment: DWH
    Kindly guide me at this point on how to resolve this and made the table available to the user.
    Thanks in advance for your valuable time.
    Regards,
    Joy

    user8686720 wrote:
    The above command was also executed but without any sign of completion and again killed. Was the session waiting on anything?
    According to the documentation you don't have many options:
    CHECKPOINT Specify CHECKPOINT if you want Oracle Database to apply a checkpoint for the DROP COLUMN operation after processing integer rows; integer is optional and must be greater than zero. If integer is greater than the number of rows in the table, then the database applies a checkpoint after all the rows have been processed. If you do not specify integer, then the database sets the default of 512. Checkpointing cuts down the amount of undo logs accumulated during the DROP COLUMN operation to avoid running out of undo space. However, if this statement is interrupted after a checkpoint has been applied, then the table remains in an unusable state. While the table is unusable, the only operations allowed on it are DROP TABLE, TRUNCATE TABLE, and ALTER TABLE DROP ... COLUMNS CONTINUE (described in sections that follow).
    You cannot use this clause with SET UNUSED, because that clause does not remove column data.

  • Drop column from compressed table

    NLSRTL
    11.2.0.3.0
    Production
    Oracle Database 11g Enterprise Edition
    11.2.0.3.0
    64bit Production
    PL/SQL
    11.2.0.3.0
    Production
    TNS for Linux:
    11.2.0.3.0
    Production
    Hello,
    I read about how to drop column from a compressed table - first set it unused and then drop the unused columns. However, in the example below on the database I ran it, it does not work. Please, can you tell me WHEN this approach does not work. What it is dependent on - parameters or something else. Why I cannot drop the unused columns?
    And the example along with the errors:
    create table tcompressed compress as select * from all_users;
    > table TCOMPRESSED created.
    alter table tcompressed add x number;
    > table TCOMPRESSED altered.
    alter table tcompressed drop column x;
    >
    Error report:
    SQL Error: ORA-39726: unsupported add/drop column operation on compressed tables
    39726. 00000 -  "unsupported add/drop column operation on compressed tables"
    *Cause:    An unsupported add/drop column operation for compressed table
               was attemped.
    *Action:   When adding a column, do not specify a default value.
               DROP column is only supported in the form of SET UNUSED column
               (meta-data drop column).
    alter table tcompressed set unused column x;
    > table TCOMPRESSED altered.
    alter table tcompressed drop unused columns;
    >
    Error report:
    SQL Error: ORA-39726: unsupported add/drop column operation on compressed tables
    39726. 00000 -  "unsupported add/drop column operation on compressed tables"
    *Cause:    An unsupported add/drop column operation for compressed table
               was attemped.
    *Action:   When adding a column, do not specify a default value.
               DROP column is only supported in the form of SET UNUSED column
               (meta-data drop column).
    As you can see even after altering the table by setting the column X as unused I still cannot drop it by using DROP UNUSED COLUMNS.
    Thank you.

    check this link it might help. At the end it has also mentioned of a bug check the same.
    http://sharpcomments.com/2008/10/ora-39726-unsupported-adddrop-column-operation-on-compressed-tables.html

  • Drop Columns

    I have an Oracle table with 60million records in it. I have about 35 columns in it and it takes about 40GB of tablespace in the database. I would like to drop some columns to reduce the table size (& also to reduce tablespace usage). Am using Oracle 9i and tried the drop column command. I get the ORA-30036 unable to extend the segment by 8192 in undo tablespace 'UNDOTBS1'. How to I overcome this issue? Is there any effecient way to drop columns from such a large table? Please advise

    >>Actually after we 've made column UNUSED, we lost it.
    Right.
    >>Because if there is no resource consumption we also can just DROP when the database is less use. So there is no much logic to make it UNUSED and then DROP.
    I maybe not very well explained.
    Yes there is logic, if you don't want anymore a column, but the application is in used, it can be interesting to set the column as "unused" - that doesn't consumme too much resource, and really drop the column later. Because drop a column implies a reading a every block of the table, which can slow down the database, and all the system.
    Create a new table may be better for performance, if you're allowed to do this, that implies the tale is no more accessible during the operation. And constraints, indexes should be rebuild as well.
    Nicolas.

  • Shutdown hangs up on my Qosmio

    HELP--Not exactly computer illiterate but no guru either.
    Shutdown hangs up on my computer. I get the following messages after I hit "shutdown"
    Nvidia TwinWindow View end now
    TouchEd Window end now
    Config Free end now
    Toshiba Raid console end now
    tfswctrl.exe end now
    By the time I click on "end now" for each of this and get to the last prompt, the computer hangs there forever and I have to shutdown with the off button. This just started.
    Help please!
    Thanks :)

    Obviously those listed running processes can not be ended as usual. Like Joao already posted, try to use system restore tool and roll back the operating system to created system restore point. Use data before it starts. I hope everything will be as before.

  • Drop column is very slow

    Hi,
    Dropping a table column takes huge time (very large table) whereas addition of the same column is faster, is there any way to speedup the drop column.
    Thanks in advance.

    I would say that the create table as select table is better (if you have the time), since you get a reorganized table without the values of the unnecessary column and it doesn't create undo, if the column is a big one it is recommended to reorganize the table (alter table move) to remove the column values (after dropping or setting unused) from the rows.
    Yuri Gorelik

  • KT4AV MS-6712 Hang after warm reset

    Alright...this one has been bugging me for quite sometime now, but I've always ignored it. I currently have an MSI board: KT4AV MS-6712.
    I'm runnin the Athlon 2500+ with a gig of ram. Nothing is overclocked. When I first built the system it worked great. However now anytime I restart it from the Windows shutdown screen or even using the reset switch, the system will hang before the POST has completed and made the beep. It'll come up with all its info showing that its checked the ram and its fine and its detected the hard disks and what not... but then it just hangs. Now if you turn the system off for 1-2 minutes, then turn it back on... it fires right up. No problems at all. I've already updated the BIOS with the latest available from the MSI website. As I said before, I had always just ignored the problem because I never found the time to screw with it. But now I really want to fix this because it is annoying! Um... only other things I have in the unit hardware wise are the following:
    TDK 880N DVD Burner
    Lite-On DVD Player
    WD 30GB HDD
    WD 100GB HDD
    Radeon 9800 Pro
    Audigy 2 Gamer
    The D-bracket is also installed.
    Anyone have any ideas at all!???
    Thanks for your help.

    Well actually a full format and clean install of Windows was already performed recently. Also the system has already been cleaned internally. I cannot stand a dirty computer. This is done OFTEN with any machine in my house. Windows having a problem was something I considered though, since it seemed to happen anytime that you would restart from Windows. But its also when you just use the reset switch. And it hangs before the POST is completed. Which makes it seem like it SHOULD be hardware. But its weird because the computer starts up... with the POST screen...not a splash screen. And it goes through all its tests. Such as checking the ram and detecting all the devices and what not. And it gets all the way through everything. The only difference is that it beeps and then boots. It'd be a little easier if it'd hang while detecting and IDE device or whatever ya know? But it doesn't. It appears to fully complete, but it just will hang after a warm reset. I can't remember exactly when it started...it was quite a while ago. However I do not recall making ANY changes to the system when it started. It just started happening. And it used to be that you could turn it off for like 10 seconds, then back on and it'd work Great. Now it seems like you have to wait like a full minute. So I really don't know. I've tried everything I can think of. I've even reduced the unit down to its bare minimum to operate. Still the same. And like I said before I JUST flashed the BIOS like...last night. I was just thinking maybe it was something in it. Still the same. Really running out of options with it. It does work fine though, other than this little annoyance.

  • V210 hangs after "Hardware Watchdog Enabled" on boot

    Hello,
    as I wrote in the subject my SUN V210 hangs after "Hardware Watchdog Enabled" on boot. If I want to shutdown the system with the "power button" I am getting the message "WARNING: Failed to shut down the system!"..
    This failure occures after I mounted the harddisk in another hardware enviroment.
    I am administrating the SUN temporarily over a HyperTerminal connection to the serial management port.
    What could the reason of this problem, and did someone know what I could do?
    Thanks and Best Regards

    Hi,
    now I booted the system with one Solaris cdrom in the single user mode.
    First I try a fsck:
    # fsck -F ufs -o b=32 /dev/rdsk/c0t0d0s0
    Alternate super block location: 32.
    ** /dev/rdsk/c0t0d0s0 (NO WRITE)
    BAD SUPER BLOCK: MAGIC NUMBER WRONG
    USE AN ALTERNATE SUPER-BLOCK TO SUPPLY NEEDED INFORMATION;
    eg. fsck [-F ufs] -o b=# [special ...]
    where # is the alternate super block. SEE fsck_ufs(1M).So I try to find the next superblock.
    # newfs -N /dev/rdsk/c0t0d0s0
    mkfs: bad value for size: 640 must be between 1024 and 640
    mkfs: size reset to default 640
    Warning: inode blocks/cyl group (42) >= data blocks (40) in last
        cylinder group. This implies 640 sector(s) cannot be allocated.
    /dev/rdsk/c0t0d0s0:     0 sectors in 0 cylinders of 1 tracks, 640 sectors
            0.0MB in 0 cyl groups (16 c/g, 5.00MB/g, 2432 i/g)
    super-block backups (for fsck -F ufs -o b=#) at:But I did not get an alternative super-block no..
    Did I have another chance?
    To run installboot just for kicks. What do you mean with this?
    To reinstall the bootblock with:
    installboot /usr/platform/`uname -i`/lib/fs/ufs/bootblk /dev/rdsk/c0t0d0s0
    Rgds
    Message was edited by:
    NetCohort

  • Satellite U400-22n and Win7 - screen hangs after 5 min

    Hi, This is my first post
    Ive purchased a new U400 with Vista preinstalled, last week ; 2 days ago Ive upgraded to windows 7 32bit professional when I stared Installing it windows prompted me that it requires a full installation , so I done a normal full install, windows 7 installed normally .
    Now my screen hangs after 5 min and windows gos black and reboots after 3-5 min, Ive downloaded all the drivers from the Toshiba site Ive used the auto detect, and installed the drivers one by one and tested if the reboot stops , Ive reinstalled windows now 4-5 time returned my copy to the shop and got a new copy of the windows DVD, its the same,
    Please has some one any advice for me. As the shop Ive perched this from will not upgrade to windows 7 for me.

    hi Mather,
    any bluescreens visible?
    win7 32bit i guess...
    you have to install all the drivers for win7 provided by toshiba in the right order!
    first chipset and patchfiles if available...
    i think a clean install will do the job!
    make sure that the hdd is error free!
    you can upgrade from vista 32bit to win7 32bit
    but no chance to upgrade to a win7 64bit when a vista 32bit is installed...

Maybe you are looking for

  • Can't get into Notes after iPhone backup restore

    I restored from my iTunes Backup on my PC, however, I still cannot get into 'Notes'. When I press the 'Notes'  App it starts for a second then closes on its own. The restore didnt fix my problem. Do i have to 'reset' it, or something.

  • ITunes installed, but dosent open

    I have installed the new iTunes 7.0 but the problem is it wont open. Theres no error, no sort of problem notification, I just double click on the icon like normal and the hour glass shows, but then nothing happens. Is there an installation glitch?? I

  • Hard drive full

    On iMac 500Go, my hard drive is full, with : Audio 10Go Video 7 Go Photos 64Go Apps 11 Go Copies 0 Others 400Go !!!!! What can I do?

  • SQL Server 2000.

    Hi, I have 2 systems in network. In one system my Application will be running and in another System, SQL Server 2000. Application will be the only System which will be connecting to Database System. I mean it will be just one time installation and I

  • Workflow approval process from outlook using webservice

    Hi All, I am trying to find a solution, for approval of worklow workitems from outlook. DUET is not a solution recommended by IT team. I need information regarding approval and rejection of workitems using webservice How can we send workitem for appr