DDL for table & all its dependent objects

Hi,
I'm trying to perform online_redefinition of a table in Oracle 11g. After this the depedent objects like indexes & Primary Keys & Foreign Keys are missing. Can anyone help with a detailed step by step procedure to perform this online_redefinition.
I've performed the below steps
1) check whether table can be redefined online or not.
2) create the duplicate empty table using CTAS where 1=2 condition.
3) start the online redefiniton.
4) do the interim sync.
5) end the redifinition.
6) drop the duplicate table.
Regards
Surya

Hi,
here are steps to consider:
1) check first if the table can be redefined online by using: DBMS_REDEFINITION.CAN_REDEF_TABLE
2) Create an intermediary table
3) Start the redefinition of the table using : DBMS_REDEFINITION.START_REDEF_TABLE
4) Copy  dependents from the original table to the intermediary table using: DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS
5) synchronize between the original and intermediate table : DBMS_REDEFINITION.SYNC_INTERIM_TABLE
6) Finish the redefinition of the intermediary table using: DBMS_REDEFINITION.FINISH_REDEF_TABLE
7) compare the "new" original table (used to be intermediary  ) to the intermediary table (used to be old original)
8) Drop the intermediary table
I hope this helps you.
Regards,

Similar Messages

  • Early Adopter release : Extract DDL for tables does not work

    Hi,
    just had a look at Raptor - really nice tool - easy install - could be a replacement for SQLnavigator for us. One or two things I noticed though ...
    1)
    Export->DDL for tables does not work throws following error
    java.lang.ClassNotFoundException: oracle.dbtools.raptor.dialogs.actions.TableDMLExport
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at oracle.ideimpl.IdeClassLoader.loadClass(IdeClassLoader.java:140)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at oracle.dbtools.raptor.dialogs.BasicObjectModifier.launch(BasicObjectModifier.java:142)
         at oracle.dbtools.raptor.dialogs.BasicObjectModifier.handleEvent(BasicObjectModifier.java:210)
         at oracle.dbtools.raptor.dialogs.actions.XMLBasedObjectAction$DefaultController.handleEvent(XMLBasedObjectAction.java:265)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:530)
         at oracle.ide.controller.IdeAction$1.run(IdeAction.java:785)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:499)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    and 2)
    when I click on a package body - I get "loading ..." below it but it never puts the
    procedure names in and the "loading ..."message stays in the tree view - however you do get to see the packages in the source window.
    Realise this is very much a work in progress and am grateful to see an early release such as this. Looking forward to the production release.
    Best regards,
    David.

    OK thanks for looking ....you've obviously got the fixes on your to do lists
    Noticed that the SQL tab when you select an object works fine - displays the
    DDL for the object
    Do you think you'll have functionality so you can select many objects (shift left click) and
    then create a DDL script for them? It looks like you can do this for all objects in a schema but
    the ability to select a subset of objects in a schema would be very useful for our DBA's.
    Couldn't see any good reason for keeping using SQLNavigator
    Many congratulations on producing such a useful tool.
    Kind regards,
    David.

  • SQL Query to return all the dependent objects

    Hi,
    I have a question.
    Suppose I am creating a table with a join on 10 other tables, views etc..
    And there are nested sub-queries in the CREATE statement.
    How can I get the list of all the dependent objects for that table without counting them manually.
    I know, we can right click the table/view name and check the dependent objects in Toad or SQL Developer.
    But, I want to know the SQL query for getting that information.
    Thanks
    Rajiv

    well there is no way oracle would know what query was used when the table was created.
    But here is one intuitive trick:
    Step 1: Create a procedure that will have a cursor declared on the query you want to know what tables/views are used.
    Step 2: Check USER_DEPENDENCIES to see what objects this procedure depends on
    Let say you want to create TEST_A table using the following statement:
    create table test_a
    as
    select *
    from scott.emp,
         scott.dept;
      1  create or replace procedure test_temp
      2  as
      3  cursor test_cur is
      4             select *
      5             from scott.emp,
      6                  scott.dept;
      7  begin
      8     null;
      9* end;
    SQL> /
    Procedure created.
    SQL> show errors
    No errors.
    SQL> desc user_dependencies
    Name                                      Null?    Type
    NAME                                      NOT NULL VARCHAR2(30)
    TYPE                                               VARCHAR2(17)
    REFERENCED_OWNER                                   VARCHAR2(30)
    REFERENCED_NAME                                    VARCHAR2(64)
    REFERENCED_TYPE                                    VARCHAR2(17)
    REFERENCED_LINK_NAME                               VARCHAR2(128)
    SCHEMAID                                           NUMBER
    DEPENDENCY_TYPE                                    VARCHAR2(4)
    SQL> select referenced_owner, referenced_name, referenced_type
      2  from user_dependencies
      3  where name='TEST_TEMP' and referenced_owner<>'SYS';
    REFERENCED_OWNER
    REFERENCED_NAME
    REFERENCED_TYPE
    SCOTT
    DEPT
    TABLE
    SCOTT
    EMP
    TABLE
    SQL>
    SQL> drop procedure test_temp;
    Procedure dropped.
    SQL>Message was edited by:
    tekicora
    Message was edited by:
    tekicora

  • How to generate the DDL script of all the schema objects.

    Hi All,
    I just wanted to make centralized repository for Oracle database and to create a base version, I need to create the DDL scripts of all the database objects so that i can check in the same ddl scripts (sql) files in to my central repository.
    I need do this schedule job which will generate the ddl scripts once in a month(This should be automated process)
    Please help me out about this.
    Oracle version - 9i
    Thanks in advance.
    Thanks,
    Santosh
    Edited by: Santosh_Oracle on Feb 23, 2011 10:26 PM

    It is definitely possible to revise the script.
    Look at it, you already have 80 percent of it for free, and you didn't even need to Google.
    Just ask a FAQ in a forum loaded with FAQs!
    And Toad can save everything to one script per object.
    Sybrand Bakker
    Senior Oracle DBA

  • Can you get DDL for more than a single object?

    I need to have the ability to select from the list of objects (say tables for this example) and generate the DDL for all or some of the tables. At this point I can only see how I can get the DDL for a single table.

    It's coming hopefully i'll have it done in the next EA drop.
    -kris

  • Bug - when generating DDL for table

    I'm not sure if this has been logged yet or not, but when i click on the sql tab of a table it generates the ddl to recreate the table fine the first time.
    However if i then click on another tab and then come back to the table tab, when i go to the sql tab within this table tab the ddl is still displayed on the tab but it tries to regenerate it and then freezes, i have to kill raptor and restart it.

    I have the same problems with VIEWS.
    Reproducing the error:
    Open folder Views
    Click on a view (opens window with all the view stuff, Columns, Data etc)
    Click on tab SQL
    Copy the select part
    Open a worksheet and past the selected text
    Go back to the View tab SQL with result Raptor hangs...(Generating DLL....)

  • INITRANS mismatch for Table and its indexes

    What will happen if the INITRANS for a table is set as 50 and its index is set as 2?
    The number of simultaneous inserts is 32.
    Thanks in advance
    Aji

    This is an example that Oracle performs leaf node splits instead of waiting for ITL:
    SQL> SQL> drop table t cascade constraints purge;
    Table dropped.
    SQL> create table t(id int, pad char(50));
    Table created.
    SQL> insert into t select rownum, 'x' from dual connect by level <= 150;
    150 rows created.
    SQL> create index t_indx on t(pad) pctfree 0;
    Index created.
    SQL> analyze index t_indx validate structure;
    Index analyzed.
    SQL> select lf_rows, lf_blks from index_stats;
       LF_ROWS    LF_BLKS
           150          2
    SQL> set serveroutput on
    SQL>
    SQL> select name, value from v$statname n, v$sesstat s
      2   where name like '%splits%'
      3     and sid = userenv('sid')
      4     and n.statistic# = s.statistic#;
    NAME                                                                  VALUE
    leaf node splits                                                          0
    leaf node 90-10 splits                                                    0
    branch node splits                                                        0
    queue splits                                                              0
    SQL>
    SQL> declare
      2      procedure do_update(p_id number)
      3      is
      4          pragma autonomous_transaction;
      5      begin
      6          update t set pad = 'y' where id = p_id;
      7          if p_id <= 35 then
      8              do_update(p_id + 1);
      9          end if;
    10          commit;
    11      end;
    12  begin
    13      do_update(1);
    14  end;
    15  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select name, value from v$statname n, v$sesstat s
      2   where name like '%splits%'
      3     and sid = userenv('sid')
      4     and n.statistic# = s.statistic#;
    NAME                                                                  VALUE
    leaf node splits                                                          1
    leaf node 90-10 splits                                                    0
    branch node splits                                                        0
    queue splits                                                              0
    SQL>
    SQL> analyze index t_indx validate structure;
    Index analyzed.
    SQL> select lf_rows, lf_blks from index_stats;
       LF_ROWS    LF_BLKS
           186          3
    SQL> select statistic_name, value from v$segment_statistics where object_name = 'T' and owner=user;
    STATISTIC_NAME                                                        VALUE
    logical reads                                                           176
    buffer busy waits                                                         0
    gc buffer busy                                                            0
    db block changes                                                        688
    physical reads                                                            0
    physical writes                                                           0
    physical reads direct                                                     0
    physical writes direct                                                    0
    gc cr blocks received                                                     0
    gc current blocks received                                                0
    ITL waits                                                                 0
    row lock waits                                                            0
    space used                                                                0
    space allocated                                                     1048576
    segment scans                                                             0
    15 rows selected.But increasing number of concurrent transactions fails with a deadlock:
    SQL> declare
      2      procedure do_update(p_id number)
      3      is
      4          pragma autonomous_transaction;
      5      begin
      6          update t set pad = 'y' where id = p_id;
      7          if p_id <= 50 then
      8              do_update(p_id + 1);
      9          end if;
    10          commit;
    11      end;
    12  begin
    13      do_update(1);
    14  end;
    15  /
    declare
    ERROR at line 1:
    ORA-00060: deadlock detected while waiting for resource
    ORA-06512: at line 6
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8
    ORA-06512: at line 8V$SEGMENT_STATISTICS does not reflect ITL waits (but they present in generated trace file) and leaf block split still happens. I don't know how to explain this.

  • Consider Dynamic pegging in Strategy parameters for dependent objects

    Dear All,
    I have specified "Consider Dynamic pegging within the propagation range" in the DS strategy profile for strategy parameters of Dependent objects"
    However still when i Do a drag and drop functionality on the detailed scheduling board, system allows me to schedule the operations as and when required without the respecting the pegging.
    As per the documentation on help.sap.com , I expect system to move the dependent objects ( dymanically pegged receipts ) as soon as the requirement element is moved on the dashboard so that the dynamic pegging relationship is maintained.
    However system is not doing so - it allows me to move the parent requirement anywhere and breaks the dymanic pegging with the dependent receipt.
    Has anyone worked with such a scenario earlier.
    Thanks for the help!!
    Thanks
    Ameet

    Hi Tiago,
    Thanks for your reply. However I have maintained the said settings in the strategy profile. Also I am not getting any scheduling error for the system to break the pegging relations. Instead I am getting the message "Rescheduling Successful" but with broken pegged relations.
    My requirement is that the end time of one order should always exactly correspond to the start time of the subsequent order.
    I planned to achieve it by making "Maximum Earliness of the Receipt" as 00:01 in the product master - Pegging tab.
    Hence I expected the system to preserve the dynamic pegging between 2 pegged orders as and when any of the two orders is moved on the Detail scheduling board. This seemed to be possible theoretically based on the documentation on help.sap.com. However it is not working as expected - may be I am missing something.
    Please let me know if there is any other better way to achieve this functionality.
    Thanks
    Ameet

  • FM for Finding Dependent Objects

    Hi ,
    We are in need of a Function Module, which would be able to list all the dependent Objects of a Field.
    For eg : Field - zsodtest contains Data Element - zsodde
    Which uses the domain zsoddom.
    When the Field is passed as the input parameter for the FM, it should List the DE and the Domain, of the Field.
    Hope the Problem is clear.
    Expecting reply at the earliest.
    Thanks and Regards,
    Ajaz

    Hello Ajaz
    There are two ways to get the required information:
    (1) DB View <b>DD03M</b>
    (2) Function module <b>DDIF_FIELDINFO_GET</b>
    When you provide TABNAME and FIELDNAME the function module will return all meta data in structure DFIES.
    Please read the FM documentation and pay special attention to parameter ALL_TYPES.
    Regards
       Uwe

  • ORA-39112: Dependent object type OBJECT_GRANT - using Datapump

    Hi, all.
    I am importing full database from 10g to 11g, using datapump:
    impdp system/aroeira directory=DATA_PUMP_DIR full=y dumpfile=saodlx_full.dmp logfile=saodlx_full_imp.log PARALLEL=6
    I got error message below with partitioned table:
    ORA-39112: Dependent object type OBJECT_GRANT:"SHR04" skipped, base object type TABLE:"SHR04"."SHR04_ARMAZENAGEM_DTL" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"SHR04" skipped, base object type TABLE:"SHR04"."SHR04_ARMAZENAGEM_DTL" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"SHR04" skipped, base object type TABLE:"SHR04"."SHR04_ARMAZENAGEM_DTL" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"SHR04" skipped, base object type TABLE:"SHR04"."SHR04_ARMAZENAGEM_DTL" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"SHR04" skipped, base object type TABLE:"SHR04"."SHR04_ARMAZENAGEM_DTL" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"SHR04" skipped, base object type TABLE:"SHR04"."SHR04_ARMAZENAGEM_DTL" creation failed
    Please, anybody can help me?
    Thanks in advance.
    Leonardo.

    Which exact versions are you dealing with?
    There are a couple of MOS notes about this topic: *Compatibility Matrix for Export And Import Between Different Oracle Versions [ID 132904.1]* and *Export/Import DataPump Parameter VERSION - Compatibility of Data Pump Between Different Oracle Versions [ID 553337.1]*
    It is recommended that both databases have the latest patchset installed.
    Also, you can troubleshoot the issue generating an SQL file with tables creation for the original dump (SQLFILE parameter to impdp), and extract and create those tables alone to see if there is something wrong there.
    Regards.
    Nelson

  • Dependant objects in a transport request

    Hi Guys
    I have a transport request with 100 custom programs in it. I have to move the transport request to
    another system. Is there a way to know all the dependant objects for these custom programs?
    If the transport fails due to dependancies the client is not willing to create another transport request.
    Please let me know if there is a solution for this?
    Thanks
    Britto
    Edited by: Britto Manohar on Jul 16, 2009 5:31 PM

    Hi  Britto,
    all the Dependent Object for the Custom Program or Report..
    will be stored in Table D010tab or FM "GET_TABLES"
    ..Pass report name it will show all the tables View used..
    but the unclude of the dependent Objects in the sutom Program transport request is the issue ..
    for Custom Tbales you can create transport reuest at run time ..for standadrd Tables creating transport request and include
    in the cutom program transport request will create error.
    Prabhudas

  • Finding dependant objects

    Hi Experts,
         I have a transport request having many custom programs in it. I need to transport it to another system. Is there any way to know all the dependant objects for the programs. Are there any tables which store the dependant objects like tables, views, includes, message class, domains, functions etc.
        Thank you
    Lijo P Raj

    Hi,
    Otherwise try this .Goto se38 custom program.Click on Display object list -->CtrlShiftF5.It will take you to se80(ABAP Workbench).You will get the used objec list in that custom program in a tree format .You will be able to see the includes,Dictionary structures used,Function modules ,transactions ,and so on used in this program.
    There you will get some idea on what are all  the dependent objects used in the program
    Regards,
    Lakshman.
    Edited by: Lakshman N on Dec 31, 2009 7:04 AM

  • Standard Oracle DDL for W_PARTY_D

    Hi,
    Can someone please provide me the standard DDL for table W_PARTY_D w.r.t. Oracle Database 10g.
    I do not find it in any files in that are there in the following folders:
    c:/oraclebi/dwrep

    Do you want to know how to get the same without asking any one?
    Logon to Informatica designer->Target Designer
    Pull the table
    Menu->Target->Generate/Execute SQL...
    Check option at 'Generate options' and then click on 'Generate SQL file'
    and then 'Edit SQL file'
    If helps mark as correct
    Edited by: Srini VEERAVALLI on Mar 27, 2013 9:14 AM
    I would assume you would do this (as I said) in Informatica folder SILOS, since we go for custom folders for any customization and the
    OOB folders remain untouched and have OOB data definition.
    I dont think any other method would help you to get this.
    Edited by: Srini VEERAVALLI on Mar 27, 2013 11:32 AM

  • Getting DDL for all oracle objects

    I am working to get the DDL for all the oracle objects within my schema.
    Some how I got the DDL but I can't got the comments associated with the oracle tables.
    Shall I know what I am missing in using dbms_package I am currently using ..?
    Below is the sql I am using to get DDL
    SELECT dbms_metadata.get_ddl(replace(OBJECT_TYPE, ' ', '_'), OBJECT_NAME,OWNER)
    FROM DBA_OBJECTS
    WHERE OBJECT_TYPE in ('SEQUENCE',
    'PROCEDURE',
    --'DATABASE LINK',
    'PACKAGE',
    'PACKAGE BODY',
    'MATERIALIZED VIEW',
    'TABLE',
    'INDEX',
    'VIEW',
    'FUNCTION')
    AND
    OWNER = 'Schema_1';
    Can I know what needs to be changed to above sql to get comments on oracle tables along with their DDL.
    Any advise is highly appreciated.
    Thanks
    JP

    >
    I am still MISSING ';' after every sql and comments.
    >
    You only get what you ask for. If you want modifications you have to set the proper transform parameters.
    See DBMS_METADATA in the PL/SQL Packages and Types doc
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28419/d_metada.htm
    See SET_TRANSFORM_PARAM and SET_REMAP_PARAM Procedures and table 74-22 that list the parameters you can use
    Here are some examples from Java code that I use depending on flags that have been set
    -- set the transforms back to the defaults
            String defaultTransform   = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'DEFAULT'); END;";
    -- do not include referential constraints
            String ref_constraints    = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'REF_CONSTRAINTS', false); END;";
    -- do not include constraints
            String constraints        = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'CONSTRAINTS', false); END;";
    -- do not include the schema prefix
            String noschema           = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'EMIT_SCHEMA', false); END;";
    -- make it look pretty
            String pretty             = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'PRETTY', true); END;";
    -- don't include the physical properties
            String physicalProperties = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'PHYSICAL_PROPERTIES', false); END;";
    -- don't include the segment attributes
            String segmentAttributes  = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'SEGMENT_ATTRIBUTES', false); END;";
    -- include a sql terminator for each statement
            String sqlterminator      = "BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'SQLTERMINATOR', true); END;";The last one is what you are looking for.

  • Need to find the dependent object details for an object.

    Hi,
    Is there any query to find the dependent object details for any object. Like if mview is built on a table, then i should be able to find the table name with out checking code of the mview. Thanks in-advance for your support. similar way for view and functions or procedures etc...
    Regards
    DBA.

    Hi all,
    Thanks a lot for your inputs. seems i have not given full details in my post. I need to have a SQL Query to find the dependent object details not DDL.
    if i give a metriealized view name, i should get the base table names directly not DDLs...
    if i give index name i should get its corresponding table name(off course i got this already)...
    if i give a function name, i should get all the tables which are being in the function...etc...
    i am looking for a script which will cover all the aspects.....i hope i have given now enough information for this....
    Regards
    DBA.

Maybe you are looking for

  • How to add hash table values to SQL Table using Powershell

    Hi, I have sharepoint list with four(column1, column2, column3,column4)columns.I am reading the list column values and adding to hashtable. Now I want to add values from hastable to SQL table with four(column1, column2, colum3,column4)columns using p

  • Operation failed!

    i m getting error from last 2days- operation could not be completed due to an error! This error not allow me to connect through my phone to ovi store! What should i do,i tried to re-install yhe application but still showing the same error..

  • Using Color Lookup Tables with cwgraph3d

    Hi, When searching old forums and other references, I can only find information regarding using color lookup tables in labview and I am using VB6. I want to let the user to pick a given amount of colors, have this turned into a gradiant over a table

  • Google Chrome and instability

    About two weeks ago I decided to switch from using Firefox (because it was much too piggish with resources) to Chrome.  At first, this was wonderful -- Chrome was lightweight and speedy, but starting a few days later all sorts of bad things began hap

  • Tab context menu on empty tab bar.

    When right clicking on an empty area of the tab bar, I get a context menu to select which toolbars I want to show or to customise Firefox's layout. As I recall (and my muscle memory seems to agree) this used to bring up the tab context menu instead,