Migration of the subsites to Parent on Unique.

Hi friends.

I am using Sharepoint 2007. I have some sudden which are inherited from the parent site.
I need to migrate to individual subsite that uses its own unique permissions. The parent site must not have any influence on it.
What are the best methods to do the same thing? There will be any question in the migration a sudden existing like that.

Kindly help.

Aurélien

Thanks for visiting the site of the community of Microsoft Windows. The question you have posted is related to Sharepoint 2007 and would be better suited to the MSDN Community. Please visit the link below to find a community that will provide the support you want.
http://social.msdn.Microsoft.com/forums/en-CA/category/SharePoint

Tags: Windows

Similar Questions

  • composite unique constraint on the values of parent and child?

    Is it possible to have a composite unique constraint that contains the values of the child elements? The example below has the "child" elements are offline, but it's preferred, but optional, I know that you can have a unique constraint in the set of tables without using a reference table that contains the constraint and the two columns. How xdb manages this requirement?

    permit:
    <parent ID="1">
       <child><name>test1</name></child>
       <child><name>test2</name></child>
    </parent>
    <parent ID="2">
       <child><name>test1</name></child>
       <child><name>test2</name></child>
    </parent>
    not allowed:
    <parent ID="1">
       <child><name>test1</name></child>
       <child><name>test1</name></child>
    </parent>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 
               xmlns:xdb="http://xmlns.oracle.com/xdb"
               xdb:storeVarrayAsTable="true"
               elementFormDefault="qualified">
        
        <xs:element name="parent" type="Parent_T"
            xdb:columnProps="CONSTRAINT parent_pkey PRIMARY KEY (XMLDATA.ID)"
            xdb:defaultTable="PARENT"/>
    
        <xs:complexType name="Parent_T" xdb:SQLType="PARENT_T" xdb:maintainDOM="false">
            <xs:sequence>
                <xs:element name="child" type="Child_T" minOccurs="1" maxOccurs="unbounded" xdb:SQLName="CHILD"
                          xdb:SQLInline="false" xdb:defaultTable="CHILD" "/>
            </xs:sequence>
            <xs:attribute name="ID" xdb:SQLName="ID" use="required" />
        </xs:complexType>
        
        <xs:complexType name="Child_T" xdb:SQLType="CHILD_T">
           <xs:sequence>
             <xs:element name="name" type="xs:string" xdb:SQLName="NAME"/>
           </xs:sequence>
         </xs:complexType>     
    </xs:schema>
    xdb:columnProps = "CONSTRAINT parent_pkey PRIMARY KEY (XMLDATA.ID), * UNIQUE (XMLDATA.» "Child.Name) *" triggers the non-existent attribute


    A possible solution would be to copy the value of the primary key parent of the child element, then I could create a composite unique constraint using only the values of the child. However, I have this same requirement elsewhere in my lowest nested schema, and it can become messy / bad design with cascading of all primary keys on the schema. For example, I have a recursive element in which two attributes must be unique only within the parent company:
    <parent id="1">
       <child a="1" b="1">
          <child a="1" b="2">
             <child a="1" b="1" /> *not allowed
          </child>
       </child>
       <child a="1" b="2" /> *not allowed
    </parent>
    Possible solution:
    <child a="1" b="2" parent_id="1" />
    <xs:complexType name="Child_T>
       <xs:sequence>
          <xs:element name="child" xsd:SQLInline="false" xsd:columnProps="UNIQUE(XMLDATA.a,XMLDATA.b,XMLDATA.parent_id)" minOccurs="0" maxOccurs="unbounded" type="Child_T">
       </xs:sequence>
       </xs:element
    </xs:complexType>
    Is there a better design?

    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi 
    PL/SQL Release 10.2.0.4.0 - Production                           
    CORE     10.2.0.4.0     Production                                       
    TNS for Linux: Version 10.2.0.4.0 - Production                   
    NLSRTL Version 10.2.0.4.0 - Production 

    You can do something like this:

    SQL> DECLARE
      2
      3    xsd_doc xmltype := xmltype('
      4  
      5    
      6      
      7        
      8          
      9        
     10      
     11    
     12    
     13      
     14        
     15          
     16        
     17      
     18    
     19    
     20      
     21        
     22          
     23        
     24        
     25      
     26    
     27    
     28      
     29        
     30          
     31        
     32      
     33    
     34  ');
     35
     36  BEGIN
     37
     38    dbms_xmlschema.registerSchema(
     39      schemaURL => 'test_parent.xsd',
     40      schemaDoc => xsd_doc,
     41      local => true,
     42      genTypes => true,
     43      genbean => false,
     44      genTables => false,
     45      enableHierarchy => dbms_xmlschema.ENABLE_HIERARCHY_NONE
     46    );
     47
     48  END;
     49  /
    
    PL/SQL procedure successfully completed
    
    SQL> CREATE TABLE my_xml_table OF XMLTYPE
      2  XMLTYPE STORE AS OBJECT RELATIONAL
      3  XMLSCHEMA "test_parent.xsd"
      4  ELEMENT "root"
      5  VARRAY xmldata."parent" STORE AS TABLE my_parent_tab
      6  (
      7    VARRAY "child" STORE AS TABLE my_child_tab
      8  )
      9  ;
    
    Table created
    
    SQL> ALTER TABLE my_parent_tab ADD CONSTRAINT parent_uk UNIQUE (nested_table_id, "ID");
    
    Table altered
    
    SQL> ALTER TABLE my_child_tab ADD CONSTRAINT child_uk UNIQUE (nested_table_id, "name");
    
    Table altered
     
    

    Then:

    SQL> insert into my_xml_table values (
      2  xmltype('
      3     test1
      4     test2
      5  
      6  
      7     test1
      8     test2
      9  ')
     10  );
    insert into my_xml_table values (
    *
    ERREUR à la ligne 1 :
    ORA-00001: violation de contrainte unique (DEV.PARENT_UK)
    
    SQL> insert into my_xml_table values (
      2  xmltype('
      3     test1
      4     test1
      5  
      6  
      7     test1
      8     test2
      9  ')
     10  );
    insert into my_xml_table values (
    *
    ERREUR à la ligne 1 :
    ORA-00001: violation de contrainte unique (DEV.CHILD_UK)
    
    SQL> insert into my_xml_table values (
      2  xmltype('
      3     test1
      4     test2
      5  
      6  
      7     test1
      8     test2
      9  ')
     10  );
    
    1 ligne créée.
    

    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14259/xdb06stt.htm#sthref987

  • all my icons that were normally at the bottom of the screen have migrated to the right side and are all bundled together how to place their return to the bott

    I recently bought a HP 15 laptop with 8.1. I use mainly desktop with latest Mozilla. All my icons that is usually found at the bottom of the screen have migrated to the right side of the screen and boots, to the top, I can't do your choice. I tried to customize without result. I am 75 but strive to keep abreast, but it baffled me.

    Sorry, it's a question of support of Windows, the Windows taskbar does not part of Firefox. I do not use Windows 8.1 myself, and I don't know if the process is the same as on my Windows XP - but maybe click and hold and drag this bar down might work like on Windows XP.

    If you do not understand what I said, or it does not work, here is a popular Windows 8 support forum that should be able to help you.
    http://www.eightforums.com/

  • Migration via the time machine (old imac) to new imac done numbers keynote pages and other programms disappear

    Migration via the time machine (old imac) new done imac numbers keynote pages and other programms disappear - what is my mistake?

    You should be able to re-download your apps purchased on the Mac App Store.

  • After the installation of 12.0, I get popups and migration from the lower left of my screen that will heal all the ads block settings.

    Whenever I visit a new Web site I can wait for one of my first 'clicks' to open a new window with something like a Quibids announcement or a site with audio asking me to take a survey vaguely regarding the site I'm. There is also an ad in the migration of the lower-left corner of my screen that no amount of effort will get rid of. It didn't happen until last week when I downloaded the latest version of Firefox. My OS is Windows 7 on a Toshiba laptop. I connect with a hotspot from Verizon at home only. I scan all emails before downloading from the server PC of the population. I ran most of Windows and a couple of free virus programs did a full scan nothing helps. This problem does not exist when I navigate with Windows Explorer.

    Sometimes a problem with Firefox can be a result of malware installed on your computer, you may not be aware of.

    You can try these free programs to search for malicious software that work with your existing anti-virus software:

    Microsoft Security Essentials is a good permanent antivirus for Windows 7/Vista/XP, if you do not already have one.

    More information can be found in the article troubleshooting Firefox problems caused by malware .

    This solve your problems? Please report to us!

  • HTML Parsing error: Cannot edit the item container parent before the child element is closed (KB927917).

    Original title: HTML Parsing Error:

    When I go on this particular Web page, I can open the page, but with errors.  The error I get is: HTML Parsing Error: impossible to edit the item container parent before the child element is closed (KB927917).  Can someone out there help me solve this problem.  Also, it is the only Web page devoted to this particular site that does this.

    Hi Debbie9089,

    ·         What browser do you use?

    ·         Have you been able to access this site much earlier?

    If you use Internet Explorer, you can follow this link and check if the problem persists.

    Why do I get an "Operation aborted" error message when I visit a Web page in Internet Explorer?

    Hope the helps of information.

    Please post back and we do know.

  • Cancel the Option of Parental control password

    Using the option of parental control and adding the password, I discovered a password must now connect to my computer, it is not the desired result.
    I want to cancel the password and be able to connect without one. NOTE: I have disabled the feature of games on my computer, and ALSO DO NOT need a password for the games.  FROM PARENTAL CONTROLS NOT NECESSARY. INSTRUCTIONS TO DEFEAT REQUIRED.
    Your help would be most appreciated! Thank you.

    I'm sorry, but you're probably not going to find someone who will help you bypass the passwords in this forum.  There is no way to verify that you are not the very children who are intentionally blocked the computer and if we were to help you bypass the built in security feature we would have defeated its purpose.

  • Not able to play the game error parental controls restrict this racing game

    Original title: Parental controls restrict this racing game

    I can't play a game on my computer.  It is rated E10 +.  Whenever I insert the disc, I get the error message: "Parental controls restrict this racing game."  I use the Vista operating system.  I am also administrator on the computer.  Due to the age of my children, there is no need to implement password protections.  I wasn't aware that there was no set parental controls on my computer.

    Just had a conversation with a customer with the same problem.

    Found a solution for this:

    http://disneyinteractivestudios.custhelp.com/app/answers/detail/A_ID/3703/~/Disney-universe---error%3A-%22parental-controls-restrict-this-game-from-running-on

  • Cannot access a Web site, HTMLParsingError unable to change the container element parent before the child element closed

    When I go to Geaowarehouse a site to check the properties and assessments

    I can't get the information

    This message appears when I click on the yellow triangle at the bottom LHS

    HTMLParsingError unable to edit the item container parent before the child element is closed

    http://answers.Microsoft.com/en-us/IE/Forum/IE8-windows_other/HTML-parsing-error-unable-to-modify-the-parent/e64759e0-D344-42d6-b1d8-0ce27504dd71

  • How to validate Windows 7 after the migration of the HDD to the SSD on a laptop?

    I upgraded my laptop with a Windows 7 OEM and windows has migrated to the new SSD.

    Now he tells me that my Windows is not genuine, even after that I tried to activate my windows again.

    It's the same machine and the same product key, just a different SSD.

    What should I do?

    Edit:

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 0x8004FE21
    Validation caching Code online: n/a, hr = 0xc004f012
    Windows product key: *-*-*-*-PVDR2
    Windows product key hash: U3gFvytkRKyyDaU2zHOKAPpt02w =
    Windows product ID: 55041-011-2754703-86388
    Windows product ID type: 6
    Windows license type: Volume MAK
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {D17ADED6-DDC8-40A5-8614-BD86AB6E2A88} (3)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_gdr.150928 - 1507
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program may Explorer\iexplore.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->
    [File mismatch: C:\Windows\system32\en-US\sppc.dll.mui[6.1.7600.16385], Hr = 0x800b0100
    [File mismatch: C:\Windows\system32\en-US\sppcext.dll.mui[6.1.7600.16385], Hr = 0x800b0100
    [File mismatch: C:\Windows\system32\en-US\slc.dll.mui[6.1.7600.16385], Hr = 0x800b0100
    [File mismatch: C:\Windows\system32\en-US\slcext.dll.mui[6.1.7600.16385], Hr = 0x800b0100
    [File mismatch: C:\Windows\system32\en-US\sppuinotify.dll.mui[6.1.7600.16385], Hr = 0 x 80092003
    [File mismatch: C:\Windows\system32\en-US\slui.exe.mui[6.1.7600.16385], Hr = 0 x 80092003
    [File mismatch: C:\Windows\system32\en-US\sppcomapi.dll.mui[6.1.7600.16385], Hr = 0x800b0100
    [File mismatch: C:\Windows\system32\en-US\sppcommdlg.dll.mui[6.1.7600.16385], Hr = 0x800b0100
    [File mismatch: C:\Windows\system32\en-US\sppsvc.exe.mui[6.1.7600.16385], Hr = 0 x 80092003
    [File mismatch: C:\Windows\system32\en-US\user32.dll.mui[6.1.7601.17514], Hr = 0x800b0100

    Other data-->
    Office details: {D17ADED6-DDC8-40A5-8614-BD86AB6E2A88}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-BATH55041-011-2754703-863886S-1-5-21-2632269440-3034877388-763067593LENOVOLenovo IdeaPad Y580LENOVO5DCN36WW (V2.03)20120503000000.000000 + 0001 090409South Africa Standard Time(GMT+02:00)1AE4D3307018400FE3LENOVOOC-01 109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, channel VOLUME_MAK
    Activation ID: 9abf5984-9c16-46f2-ad1e-7fe15931a8dd
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 55041-00172-011-275470-03-7177-7601.0000-2582012
    Installation ID: 000401724701945290880302308912032665376104509226579985
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    The machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: PVDR2
    License status: licensed
    Remaining Windows rearm count: 3
    Time to trust: 2015/12/17 16:04:12

    Windows Activation Technologies-->
    HrOffline: 0x8004FE21
    HrOnline: n/a
    Beyond: 0x000000000000EF60
    Event timestamp: 12:17:2015 15:26
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:
    Altered the file: %systemroot%\system32\sppc.dll|sppc.dll.mui
    Altered the file: %systemroot%\system32\sppcext.dll|sppcext.dll.mui
    Altered the file: %systemroot%\system32\slc.dll|slc.dll.mui
    Altered the file: %systemroot%\system32\slcext.dll|slcext.dll.mui
    Altered the file: %systemroot%\system32\sppuinotify.dll|sppuinotify.dll.mui
    Tampered files: Check %systemroot%\system32\slui.exe|slui.exe.mui|COM
    Altered the file: %systemroot%\system32\sppcomapi.dll|sppcomapi.dll.mui
    Altered the file: %systemroot%\system32\sppcommdlg.dll|sppcommdlg.dll.mui
    Altered the file: %systemroot%\system32\sppsvc.exe|sppsvc.exe.mui

    --> HWID data
    Current HWID of Hash: MgAAAAIAAQABAAIAAAABAAAAAwABAAEAln18JLIDdxYu8ky89I1Eo9DWVvus90a5lmM =

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes
    Windows marker version: 0 x 20001
    OEMID and OEMTableID consistent: Yes
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC LENOVO OC-01
    FACP LENOVO OC-01
    HPET LENOVO OC-01
    BOOT LENOVO OC-01
    MCFG LENOVO OC-01
    UEFI LENOVO OC-01
    ASF! LENOVO-CB-01
    SLIC LENOVO OC-01
    SSDT LENOVO OC-01
    ASPT LENOVO OC-01
    FPDT LENOVO OC-01
    SSDT LENOVO OC-01
    SSDT LENOVO OC-01
    SSDT LENOVO OC-01

    According to your report, you use a Volume License customer who is only available for Volume License customers who deploy Windows 7 in bulk. Where did you got this license?

    If you got through the employer, try to contact the volume license activation center to reactivate:

    Try the number listed here appropriate phone: phone numbers Microsoft Activation centers worldwide:
    http://www.Microsoft.com/licensing/existing-customers/activation-centers.aspx

  • How to share a specific subfolder located under the share main parent folder?

    Hi all

    My concern is as below:

    say there are the users "User1" and "user2". main parent folder say "finance" and finance has 3 subfolders 'accounts', 'buy' and 'delivery '.

    now that I have shared a folder main parent of finance both users user1 and user2.

    but 1 2 records must be consulted by user1 (accounts and purchase) and 2 last folder must be consulted by user2 (purchase and deliveries).

    Is there a way to allow this when I share the folder main parent at the same time user?

    conclusion: How can I restrict access to subfolders under main shared folder to the user?

    waiting for the answer and appreciate the prompt and perfect answer for my query.

    Thank you

    Sandesh

    There is no as good as now the two folders are inheriting the same authority as their parent folder, so all of the permissions that you apply to the top folder will be applied automatically to those below him. When you customize the subfolder permissions, they will be is be inheriting the same permissions and will have their own.

  • How can I accept terms of use Live when you try to use the Windows 7 parental control features?

    * I have already connected to fss.live.com and https://familysafety.microsoft.com. This solution does not remedy the issue.* *.

    When you try to use the Windows 7 parental control features, it first asks you to connect to Live.  When I do, I get the 8004B3E9 error Code and it asks me to "connect to account.live.com and accept the terms of use.  However, in doing so, there are no terms of use for me to accept.  I also go to fss.live.come and familysaftely.microsoft.com and no option for the conditions of use is available to accept.  In addition, I tried different browsers.

    I can connect on Live.com and view my account easily, but without conditions of use prompt appears for me to accept, so my attempts to use the parental controls are stuck in this cycle, where it won't let me past without accepting conditions that do not seem to exist.

    How can I make sure I am set up as the account 'Parent '.

    Help, please

    3 hours later I'm finally able to access Family Safety. Thank you!

    The correct link to solve the "Terms of use" requirement is:http://g.live.com/0fsenus4/nexusmigrate

  • Migration of the AP in WCS: "Failure - role of Veryfying Radio."

    Hello

    while trying to convert autonomous APs (AIR-AP1121G-E-K9) mode LWAPP WCS always says 'Fail - role of Veryfying Radio'. Anyone know why this happens? The analysis of migration summary shows all criteria that green. Thank you.

    In the wcs logs folder: / wcs/webnms/logs/it must be a direction for migration and the migration of this ap logs.

    Could you post?

  • Windows7 when I migrated to the Working Group at the field of the firewall has crashed. And also it does not show in the services. In the firewall rules of incoming and outgoing traffic is missing.

    In my windows7 when I migrated to the task force to the area, crashed by the firewall. And also it does not show in the services. In the firewall rules of incoming and outgoing traffic is missing.

    Hello arjunpottekkad,

    It is disheartening to know that have problems you with the firewall. As I understand it the incoming and outgoing traffic rules are missing from the firewall.

    The question you posted would be better suited in the TechNet Forums . I would recommend posting your query in the TechNet Forums. You can follow the link to your question:

    Windows 7 IT Pro category

    Answer to us if you are having problems with the Windows Firewall or any other problem of Windows, and I'd be happy to help you again and try to correct the problem as soon as possible.

    Good day!

    Hope this information helps.

  • Migration of the OMF

    Hello guys,.

    I'm in a phase of migration of OMF files and configured in my pfile file as follows:

    * .db_create_file_dest = ' / DG_PRODUCTION'

    * .db_create_online_log_dest_1 = ' / DG_PRODUCTION'

    * .db_create_online_log_dest_2 = ' / FRA_PRODUCTION'

    I used the following command:

    RMAN > RUN {

    SET NEWNAME FOR DATABASE AGAIN.

    RESTORE THE DATABASE;

    SWITCH DATAFILE;

    RECOVER THE DATABASE;

    }

    RMAN > ALTER DATABASE OPEN RESETLOGS;

    When you are finished, I consulted:

    SQL > select name from v $ datafile;

    NAME

    -------------------------------------------------- ------------------------------

    /DG_PRODUCTION/BD/datafile/o1_mf_system_c7ytmpqn_.dbf

    /DG_PRODUCTION/BD/datafile/o1_mf_sysaux_c7ytmps5_.dbf

    /DG_PRODUCTION/BD/datafile/o1_mf_undotbs1_c7yl7ltl_.dbf

    So far, ok. !

    SQL > select name from v $ controlfile;

    NAME

    -------------------------------------------------- ------------------------------

    / DG_PRODUCTION, BD, controlfile, o1_mf_c7yk6tol_. CTL

    / FRA_PRODUCTION, BD, controlfile, o1_mf_c7yk6x0n_. CTL

    So far, ok!

    but

    SQL > select Member from v $ logfile;

    MEMBERS

    -------------------------------------------------- ------------------------------

    /U05/BD/redo03.log

    /U05/BD/redo02.log

    /U05/BD/redo01.log

    the migration of the log files have been migrated to DG_PRODUCTION and FRA_PRODUCTION that I specified in the pfile file?

    the correct would be:

    SQL > select Member from v $ logfile;

    MEMBERS

    -------------------------------------------------- ------------------------------

    /DG_PRODUCTION/BD/onlinelog/redo03.log

    /FRA_PRODUCTION/BD/onlinelog/redo02.log

    ??

    SET NEWNAME applies only to the database files, log files redo not online.

    You could issue commands ALTER DATABASE add LOGFILE without specifying the path to Oracle using the defined online_log_dest

    (and then dropping the 'old')

    Hemant K Collette

Maybe you are looking for