Help dropping constraints

Hi,
I have about 12 constraints in my user_constraints for tables that no longer exist. So how do I remove them?
The constraints have all adopted weird names such as 'BIN$2qcYHsnhR7eVViBGHj+57g==$0' and it shows that they exist on similarly weird tables such as 'BIN$2gdcO6pUQ3OeA+QJuJ0xWA==$0'.
Unsurprisingly, the following sql does not work:
alter table BIN$2gdcO6pUQ3OeA+QJuJ0xWA==$0 drop constraint BIN$2qcYHsnhR7eVViBGHj+57g==$0;
thanks,
Martin

Martin,
They are in recyclebin, so you need to purge recylebin
purge dba_recyclebin;
or
purge user_recyclebin;Regards
Edited by: OrionNet on Apr 22, 2009 8:26 PM

Similar Messages

  • Hide Toolbar and Value help drop downlist

    Hi,
    I created a IF with a Value help drop down list. I also make use of the Hide Toolbar options. The drop down list has an input like:
    key - text (eg. 0001 - Holiday)
    The pdfMode is "UpdateDataInPdf".
    When i run my wd everything works fine. What i want to do is this: when the user push the button "next" i want to show the IF in a read-only mode. What i did, is that when the user push to button i change the PdfMode from "UpdateDateInPdf" to "GeneratePdf" (also tried "UsePdf") and change the "enabled" property to false.
    What happens is, the Adobe toolbar is back and the value help dorp downlist shows the key instead of the text.
    If i don't change the "enabled" property it works well, but than it's still possible to change data in the form.
    I am using NW04 SP16.
    Hope somebody can helps me.
    Kind regards,
    Maarten Duits

    Hi Maarten
    in general, right now there is no standard (i.e. non-hack) way to make a physical interactive PDF form read-only.
    The only sure way this would work in your process is to send the data back to the backend and have a second (practically identical) template ready in the background to generate a read-only version of what the user saw previously.
    Best regards,
    Markus Meisl
    SAP NetWeaver Product Management

  • How to set a default value in a Value Help Drop Down List

    Hi,
    I used an age Range field in my adobe form, the control  is a Value Help Drop Down List. i am populating the drop down using following code.
    IWDAttributeInfo ageInfo = wdContext.nodePersonalData().getNodeInfo().getAttribute("CTAgeRange");
         ISimpleTypeModifiable ageType = ageInfo.getModifiableSimpleType();     
         IModifiableSimpleValueSet ageValueSet =  ageType.getSVServices().getModifiableSimpleValueSet();
         ageValueSet.put("1","21-29");
         ageValueSet.put("2","30-34");
         ageValueSet.put("3","35 or Above");
    My requirement is to set a default value e.g. 30-34 in the age range field.
    I want to give input to iform from my Implementation code only.
    Please help.
    Thanks in advance

    hi Ranjan,
    that means you have to set at design time,
    to set default drop down value you will have to set the value for particular attribute (which is linked to the dropdown element) in the context
    like
    wdContext.currentContext<nodeName>Element.set<FieldName>(<default value>)
    This generally done in Initialization method of the controller.

  • Firefox help drop down menu disabled

    I'm running Firefox 26, as far as I can tell. When I try to open the Help drop down menu with my mouse or Alt-H, nothing happens. The Help menu doesn't drop down.
    I scanned for Malware, but found nothing.
    Happy Holidays!

    *If you have many extensions then first enable half of the extensions to test which half has the problem.
    *Continue to divide the bad half that still has the issue until you find which one is causing it.

  • Recreating foreign key not working? two proc one to drop constraint and another to recreate foreign constraint in database?

    CREATE PROC [dbo].[SP_DropForeignKeys] 
    AS
    BEGIN
    DECLARE @FKTABLE_OWNER SYSNAME, @FKTABLE_NAME sysname, @FK_Name sysname
    DECLARE Cursor_DisableForeignKey CURSOR FOR  
    SELECT   schema_name(schema_id), object_name(parent_object_id), name
    FROM   sys.foreign_keys
    OPEN Cursor_DisableForeignKey
    FETCH NEXT FROM   Cursor_DisableForeignKey  
    INTO  @FKTABLE_OWNER  , @FKTABLE_NAME, @FK_Name 
    DECLARE @SQL nvarchar(max)
    WHILE @@FETCH_STATUS = 0   
    BEGIN  
    SET @SQL  = 'ALTER TABLE [' + @FKTABLE_OWNER + '].[' + @FKTABLE_NAME   
               + ']  DROP CONSTRAINT [' + @FK_NAME + ']'  
    select @sql
    EXECUTE (@SQL)
    FETCH NEXT FROM   Cursor_DisableForeignKey INTO @FKTABLE_OWNER, @FKTABLE_NAME, @FK_Name
    END  
    CLOSE Cursor_DisableForeignKey
    DEALLOCATE Cursor_DisableForeignKey
    END
    create proc [dbo].[SP_CreateForeignKeys]
    as
    DECLARE @schema_name sysname;
    DECLARE @table_name sysname;
    DECLARE @constraint_name sysname;
    DECLARE @constraint_object_id int;
    DECLARE @referenced_object_name sysname;
    DECLARE @is_disabled bit;
    DECLARE @is_not_for_replication bit;
    DECLARE @is_not_trusted bit;
    DECLARE @delete_referential_action tinyint;
    DECLARE @update_referential_action tinyint;
    DECLARE @tsql nvarchar(4000);
    DECLARE @tsql2 nvarchar(4000);
    DECLARE @fkCol sysname;
    DECLARE @pkCol sysname;
    DECLARE @col1 bit;
    DECLARE @action char(6);
    SET @action = 'CREATE';
    DECLARE FKcursor CURSOR FOR
        select OBJECT_SCHEMA_NAME(parent_object_id)
             , OBJECT_NAME(parent_object_id), name, OBJECT_NAME(referenced_object_id)
             , object_id
             , is_disabled, is_not_for_replication, is_not_trusted
             , delete_referential_action, update_referential_action
        from sys.foreign_keys
        order by 1,2;
    OPEN FKcursor;
    FETCH NEXT FROM FKcursor INTO @schema_name, @table_name, @constraint_name
        , @referenced_object_name, @constraint_object_id
        , @is_disabled, @is_not_for_replication, @is_not_trusted
        , @delete_referential_action, @update_referential_action;
    WHILE @@FETCH_STATUS = 0
    BEGIN
              BEGIN
            SET @tsql = 'ALTER TABLE '
                      + QUOTENAME(@schema_name) + '.' + QUOTENAME(@table_name)
                      + CASE @is_not_trusted
                            WHEN 0 THEN ' WITH CHECK '
                            ELSE ' WITH NOCHECK '
                        END
                      + ' ADD CONSTRAINT ' + QUOTENAME(@constraint_name)
                      + ' FOREIGN KEY ('
            SET @tsql2 = '';
            DECLARE ColumnCursor CURSOR FOR
                select COL_NAME(fk.parent_object_id, fkc.parent_column_id)
                     , COL_NAME(fk.referenced_object_id, fkc.referenced_column_id)
                from sys.foreign_keys fk
                inner join sys.foreign_key_columns fkc
                on fk.object_id = fkc.constraint_object_id
                where fkc.constraint_object_id = @constraint_object_id
                order by fkc.constraint_column_id;
            OPEN ColumnCursor;
            SET @col1 = 1;
            FETCH NEXT FROM ColumnCursor INTO @fkCol, @pkCol;
            WHILE @@FETCH_STATUS = 0
            BEGIN
                IF (@col1 = 1)
                    SET @col1 = 0
                ELSE
                BEGIN
                    SET @tsql = @tsql + ',';
                    SET @tsql2 = @tsql2 + ',';
                END;
                SET @tsql = @tsql + QUOTENAME(@fkCol);
                SET @tsql2 = @tsql2 + QUOTENAME(@pkCol);
                FETCH NEXT FROM ColumnCursor INTO @fkCol, @pkCol;
            END;
            CLOSE ColumnCursor;
            DEALLOCATE ColumnCursor;
            SET @tsql = @tsql + ' ) REFERENCES ' + QUOTENAME(@schema_name) + '.' + QUOTENAME(@referenced_object_name)
                      + ' (' + @tsql2 + ')';           
            SET @tsql = @tsql
                      + ' ON UPDATE ' + CASE @update_referential_action
                                            WHEN 0 THEN 'NO ACTION '
                                            WHEN 1 THEN 'CASCADE '
                                            WHEN 2 THEN 'SET NULL '
                                            ELSE 'SET DEFAULT '
                                        END
                      + ' ON DELETE ' + CASE @delete_referential_action
                                            WHEN 0 THEN 'NO ACTION '
                                            WHEN 1 THEN 'CASCADE '
                                            WHEN 2 THEN 'SET NULL '
                                            ELSE 'SET DEFAULT '
                                        END
                      + CASE @is_not_for_replication
                            WHEN 1 THEN ' NOT FOR REPLICATION '
                            ELSE ''
                        END
                      + ';';
            END;
        PRINT @tsql;
        IF @action = 'CREATE'
            BEGIN
            SET @tsql = 'ALTER TABLE '
                      + QUOTENAME(@schema_name) + '.' + QUOTENAME(@table_name)
                      + CASE @is_disabled
                            WHEN 0 THEN ' CHECK '
                            ELSE ' NOCHECK '
                        END
                      + 'CONSTRAINT ' + QUOTENAME(@constraint_name)
                      + ';';
            PRINT @tsql;
            END;
        FETCH NEXT FROM FKcursor INTO @schema_name, @table_name, @constraint_name
            , @referenced_object_name, @constraint_object_id
            , @is_disabled, @is_not_for_replication, @is_not_trusted
            , @delete_referential_action, @update_referential_action;
    END;
    CLOSE FKcursor;
    DEALLOCATE FKcursor;
    GO
    exec [dbo].[SP_DropForeignKeys] 
    exec [dbo].[SP_CreateForeignKeys]
    droped proc worked perfect but when i execute [dbo].[SP_CreateForeignKeys] and try to see again foreign key constraints but result is empty?
    can anybody suggest me what's wrong with these script?

    droped proc worked perfect but when i execute [dbo].[SP_CreateForeignKeys] and try to see again foreign key constraints but result is empty?
    Well, if you have dropped the keys, you have dropped them. They can't be recreated out of the blue. You need to use modify procedure to save the ALTER TABLE statements in a temp table, drop the keys, truncate the tables, and the run a cursor over the
    temp table. In a single transaction, so that you don't lose the keys if the server crashes half-way through.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • F4-Help (drop down) in customer search via Tel. No.

    HI,
    F4-Help (drop down) in customer search used to have a search functionality which allowed 'Customer' search via 'Telephone Number'. For example, in tcodes: xd03, vd03 or where ever there is a customer input field is.
    Now in 4.7 this does not exists. Does anyone knows how to restore it?
    Thanks

    Hi Nablan,
    I found a note 195508 which states that modify two views in SE11 (V_CONTACT and VKNK_CONTACT). The second one does not exists in 4.7. The instructions for first one is incomplete.
    I am still searching for answers.
    Thanks for your suggestions to look at DEBI. I am curious as how you found DEBI as the relevent 'search help'.
    Thanks
    Nave

  • When I select an option from the help drop down menu it just goes away. It does not go to the help option I chose.

    When I select an option from from the help drop down menu it just goes away. It does not go to the query I selected by hitting the keypad.

    Jody
    you don't tell us Device or OS?
    Quoted from  Apple's "How to write a good question"
       To help other members answer your question, give as many details as you can.
    Include your product name and specs such as processor speed, memory, and storage capacity. Please do not include your Serial Number, IMEI, MEID, or other personal information.
    Provide the version numbers of your operating system and relevant applications, for example "iOS 6.0.3" or "iPhoto 9.1.2".
    Describe the problem, and include any details about what seems to cause it.
    List any troubleshooting steps you've already tried, or temporary fixes you've discovered.
    ÇÇÇ

  • Lightroom help drop down

    My online help drop down has stopped working.  Message: Online help for Lightroom is not available.  Check the internet connection and try again.  I had no previous problem.  My internet connection is working fine

    Most likely the Internet connection problem is on the Adobe end of the wire.  I suggest you wait for a short time and try again.

  • Dropping Constraints before loading

    I am trying to improve the performance of some maps that are running long.
    I want to drop the constraints on the fact tables before each load and then re-build them after the load is done. I was thinking pre and post mapping operators to run a procedure would do it.
    But my question is, once i drop the constraints on the fact tables my map would not detect the unique constraint violations on that fact table anymore, am i right ? or would they get detected after the constraints are re-enabled and then the map would fail?
    Thanks in advance for your feedback.

    Your assumptions are correct. If you drop constraints, you'll not have how to detect unique cons. violations.
    You may want to use enable constraint bla bla bla NOVALIDATE;
    For further info, see:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:8806498660292
    I don't like this alternative though...
    Are you using surrogate keys? If so, you may want to disable primary key only and have an alternate key (unique) to avoid data integrity issues.

  • Set cursor for dropping constraints

    I want to create a function that would drop constraints and return a boolean if it was done.
    I'd like to pass in the schema name and owner ...I've tried various ways and seem to be getting messed up on the cursor ...
    the errors I am getting are about the select statement. PLS-00103 encountered the Select when expecting one of the following :
    We're building a test environment and will need to do this many many times. I know this isn't new to dbas, but when I do searches
    I just can't seem to find something similar that meets our needs. I just want it to run in a script and the schema and table name
    get passed in... all the constraints are found and disabled.
    Thank you.
    ------ PASS in the schema name, owner
    declare
    cursor cur (schema_in varchar2(20), table_name_in varchar2)
    select owner, table_name, constraint_name
    from dba_constraints
    where owner =schema_in
    and table_name =table_name_in
    order by table_name, constraint_name;
    ----- use those values to do the drop looping until they are all done....
    begin
    for v in cur(&schema_name, &a_table) Loop
    execute immediate'Alter Table' || owner || '.' Table_name || 'Disable_constraint ' || constaint_name using
    v.owner, v.table_name, v.constraint_name;
    end loop;
    close cur;
    return (true);
    end dropconstraints

    You can't bind in ddl statements:
    declare
         cursor cur (schema_in varchar2, table_name_in varchar2)
         is
                select owner, table_name, constraint_name
                    from dba_constraints
                   where owner = schema_in and table_name = table_name_in
              order by table_name, constraint_name;
    -- use those values to do the drop looping until they are all done....
    begin
         for v in cur ('&schema_name', '&a_table')
         loop
              execute immediate   'Alter Table '
                                         || v.owner
                                         || '.'
                                         || v.table_name
                                         || ' Disable constraint '
                                         || v.constaint_name;
         end loop;
    end;

  • TRUNCATE TABLE NOT WORKING AFTER DROPPING CONSTRAINTS

    Hi,
    I have a table with a foreign key constraint. I know you can't truncate tables when there are foreign key constraints. So I drop the constraints before running the TRUNCATE TABLE command. But SQL Server is still stating there are foreign key constraints
    even after they have just been dropped.
    When I use SQL Server Management Studio to generate a drop & create script on this table or any other table with an FK consttaint, the generated script fails stating that there are still foreign key constraints??
    I have the same problem for every table that has FK constraints, for those without FK, TRUNCATE table works without issues.
    The end goal is to reset the identity value of the primary key. Since DBCC does not work on Azure, TRUNCATE TABLE is the only way left, especially if you can't even drop and recreate tables with FK constraints.
    What am I missing here?
    Peter

    Hi,
    Thanks for posting here.
    TRUNCATE TABLE is similar to the DELETE statement with no WHERE clause; however, TRUNCATE TABLE is faster and uses fewer system and transaction log resources.
    TRUNCATE TABLE removes all rows from a table, but the table structure and its columns, constraints, indexes, and so on remain. To remove the table definition in addition to its data, use the DROP TABLE statement.
    If the table contains an identity column, the counter for that column is reset to the seed value defined for the column. If no seed was defined, the default value 1 is used. To retain the identity counter, use DELETE instead.
    Restrictions
    You cannot use TRUNCATE TABLE on tables that:
    •Are referenced by a FOREIGN KEY constraint. (You can truncate a table that has a foreign key that references itself.)
    •Participate in an indexed view.
    •Are published by using transactional replication or merge replication.
    For tables with one or more of these characteristics, use the DELETE statement instead.
    TRUNCATE TABLE cannot activate a trigger because the operation does not log individual row deletions. For more information, see CREATE TRIGGER (Transact-SQL).
    Truncating Large Tables
    Microsoft SQL Server has the ability to drop or truncate tables that have more than 128 extents without holding simultaneous locks on all the extents required for the drop.
    Permissions--------------------------------------------------------------------------------
     The minimum permission required is ALTER on table_name. TRUNCATE TABLE permissions default to the table owner, members of the sysadmin fixed server role, and the db_owner and db_ddladmin fixed database roles, and are not transferable. However, you
    can incorporate the TRUNCATE TABLE statement within a module, such as a stored procedure, and grant appropriate permissions to the module using the EXECUTE AS clause.
    You cannot truncate a table which has an FK constraint on it.
    Typically my process for this is:
    Drop the constraints
    Trunc the table
    Recreate the constraints.
    Hope this helps you.
    Girish Prajwal

  • Problem in Dropping Constraints..

    Hi All,
    I am facing problem while dropping and recreating constraint.Requirement is i have table there is 4 check(C) type constraint and all are having different search condition.I need to alter table and drop one of them C type constraint and again recereate it.
    select * from user_constraints where constraint_type='C' AND TABLE_NAME='xyz'
    It will return multiple rows.
    when i do
    select * from user_constraints where constraint_type='C' AND TABLE_NAME='xyz' and search_condition = 'V_PARAM_CDE IN ''(''F_RECEP_PATCH'', ''NLS_LANGUAGE'')'
    its throwing error : ORA-00997 illegal use of long datatype
    Now i am not able to drop and recreate constraint.I need to write a script and through script need to drop and recreate it.
    Please help me to sort out above problem.
    Thanks n advance.
    Anwar

    1) Rather than dropping and recreating a constraint, you're better off disabling and re-enabling it. Depending on what you're trying to do, you could also make the constraint deferrable and defer validation to the end of the transaction.
    2) Do you name your constraints? If not, could you? The easiest way to be able to uniquely identify a constraint is generally to give it an informative name.
    Justin

  • Help Dropping Undo Tablespace

    Guys,
    I want to create a new undo tablespace and drop the old one.
    I followed the below steps, but could not drop it
    create undo tablespace UNDOTBS datafile '/ora01/oradata/DEVTDB/undotbs.dbf' size 100m AUTOEXTEND ON MAXSIZE 5G;
    alter system set undo_tablespace=UNDOTBS scope=both;
    alter tablespace UNDOTBS1 offline; -- this was successful
    DROP TABLESPACE UNDOTBS1 INCLUDING CONTENTS AND DATAFILES CASCADE CONSTRAINTS;
    -- Last command threw the following error:
    ORA-01548: active rollback segment '_SYSSMU6$' found, terminate dropping tablespace
    I am using oracle 10.2.0.4G on Linux Redhat.
    Any help is appreciated.
    Thanks!

    Charlov wrote:
    Guys,
    I want to create a new undo tablespace and drop the old one.
    I followed the below steps, but could not drop it
    create undo tablespace UNDOTBS datafile '/ora01/oradata/DEVTDB/undotbs.dbf' size 100m AUTOEXTEND ON MAXSIZE 5G;
    alter system set undo_tablespace=UNDOTBS scope=both;
    alter tablespace UNDOTBS1 offline; -- this was successful
    DROP TABLESPACE UNDOTBS1 INCLUDING CONTENTS AND DATAFILES CASCADE CONSTRAINTS;
    -- Last command threw the following error:
    ORA-01548: active rollback segment '_SYSSMU6$' found, terminate dropping tablespace
    I am using oracle 10.2.0.4G on Linux Redhat.
    Any help is appreciated.
    Thanks!Hi,
    I think you need to wait until there's no active rollback segments in the old undotbs before you can drop it. You can also restart the instance to force Oracle to release the old undotbs.
    HtH
    //Johan

  • Urgent plz help abt Constraint

    Hi friends,
    I have disabled primary key constraint to import data into the table.
    Now I am trying to
    alter table table_name modify constraint cons_name enable NOVALIDATE
    it is giving me an error ORA-02437.
    Shall I drop primary key constraint & use this command
    alter table aa add constraint aa_pk primary key ( a ) novalidate ;
    Will it work?

    Hi,
    Thanx.
    So I have only one option to remove duplicate data
    from table . Right?
    Since table is very big, it will take lot of time, so
    I was finding diffrent way to do thatIt will not take a lot of yours time you just have to get count of this PK column table data.
    SELECT COUNT(pk_column),pk_column
       FROM <table>
    GROUP BY pk_column
    HAVING COUNT(pk_column)>1
    Then delete duplicate rows preserving 1 row.
    DELETE FROM <table> o
    WHERE EXISTS (SELECT 'x' FROM <table> p
                                    WHERE p.pk_column=o.pk_column
                                         AND  p.rowid>o.rowid)**Not tested
    Khurram

  • PLEASE HELP (Dropping Frames

    Alright bare with me I know nothing about the program seeing how I just downloaded it. I'm using a Canon Rebel T1i as my video camera and am currently trying to shoot a music video. The video files come in as .mov files and when I edit them in Final Cut the dropping frame window would come up every second.
    After several attempts I converted the videos to Mp4g and when I played the file in FCS it actually played until I added an effect and rendered then the frames would drop again pleaseeeeeee help me.
    I have a Black Macbook 2.2 GHz Intel Core 2 Duo
    ATAPI
    but Im running FCP off of an external hard drive with 900G free
    Im new to this whole professional editing and any help would be greatly appriciated

    Ok, I think I can tell you what the problem is:
    Im running FCP off of an external hard drive with 900G free
    Bad Idea.  You want FCP running off your system drive because it's going to be much faster and you don't want to be both running FCP of that drive AND trying to process data.  Basically you are telling your external drive to work twice as hard and that's going to kill FCP performance.  You just won't have enough connection bandwith to push your application data AND your video data through.  You are lucky you aren't crashing the program, to be honest.
    FCP should be installed and running from your internal hard drive.  Move other, less critical apps and data to your external drive.
    Second, what type of external hard drive are you running?  If it's USB 2.0 it's probably not going to be fast enough.  USB 2.0 has about a 400mbps connection speed (400 million bits ber second) and firewire 400 has a similar data rate.
    You want a Firewire 800 external hard drive plugged into your firewire 800 port and the drive should only be crunching video data.
    Fix these two problems and it should work a LOT better, but still expect long conversion/compression times if you are running a Core 2 DUO.
    One other note:  If you are connecting your camera to your firewire port and can't connect your external hard drive at the same time (like me), just dump your captured video data to a folder on your system drive, then disconnect the camera, plug in your firewire 800 drive, then copy your video files and projects to the external drive.  Yeah, it takes 2 steps and is a bit of a pain, but it should work a lot better.
    Hope this helps!
    Louis
    Oh, a couple of other notes:  I am new to this too, but I have learned a TON over the last month.  You don't need an excessive amount of internal hard drive space to capture SDV video.  I can capture 60 minutes of SDV video and it takes up about 8GB.  Figure 16GB for a motion picture's worth of data.  This you can work with on your internal drive (make space if you have to!!!).  However, when you go to turn your project into uncompressed frames for DVD authoring your files are going to get HUGE.  Make sure your ouput directories in FCP are set to your external drive (your "originals" can stay on your system drive).  Unconpressed files can reach 50-100GB or more.  900GB is plenty if you want to do a feature length film.
    However, if you are working in HDV (high def) you can expect files close to twice the size on both drives.  I am not sure if a core 2 duo can do HDV to be honest, but it's worth a shot.  I know nothing about HDV because I am working solely in SDV.
    One other note that just saw:  You are doing this on a MacBook?  You really want the video card of a Macbook Pro for rendering.  You should still be able to do it, but it's going to be slow.  Snow Leopard (theoretically) should make better use of your hardware, but I can't prove that.

Maybe you are looking for

  • Problem with cfform

    is there anything wrong in this code. <body> <cfform name="RunningForm" method="post" action="AddEntry-cfform.cfm"> <table> <tr> <td>Date:</td> <td><cfinput type="text" name="date" size="20"></td> </tr> <tr> <td>Distance:</td> <td><cfinput type="text

  • Feedback on Apple iPhone

    All, I share the following feedback that I recently sent to Apple via the following link: www.apple.com/feedback/iphone.html I provide this here as you may have benefit in the communication. Cheers, Chuck Hi, I recently purchased an iPhone 3G. I have

  • Automatic tests for "smart forms" and SAPScript

    Hi there, we have some really horrible SAPScript and SmartForms here, mixing up presentation with business logic and database table selects in the layout (!). We want to refactor these objects. We have some test data at hand to continouously reproduc

  • Setting Change Tracking Group Programmatically

    Is there any sample code C# or TSQL for programmatically setting Change Tracking Group and Enable Change Tracking for Attributes?

  • Z510 automatically shuts down at 99% battery, when running on battery

    My Lenovo IdeaPad Z510 shuts down after 30-40 minutes when running on battery, without any notification. The battery level displays 99% battery.I've tried various troubleshooting steps, including gauge reset, charging for 10 hours when shut down, cha