Estinamted time for enabling constraints

Just curious, does any one know how long it would take for enabling one disabled constraint on a 166gb table? The table has 34 columns and 2 primary keys.
i did a "alter table <table_name> enable constraint <constraint_name>" and this statement has been running for 50 mins now.
Thanks

969224 wrote:
Just curious, does any one know how long it would take for enabling one disabled constraint on a 166gb table? The table has 34 columns and 2 primary keys.
i did a "alter table <table_name> enable constraint <constraint_name>" and this statement has been running for 50 mins now.
Thanksenabling CONSTRAINT will take longer than disabling the same constraint.
The exact answer is that "It depends".

Similar Messages

  • Balance for open periods in a time series enabled cube

    Hi,
    We have a request to calculate balance for open periods in a time series enabled cube, I don’t there is any inbuilt function for this.
    Any ideas on how to calculate this without adding new members/formulae in the time dimension. Currently we compute this in the report
    EX:
    BOY(May) = Jun+Jul + … + Dec
    Thanks,

    You will have to add a member somewhere. Suppose you add it in scenario, then you could use sumrange for the current member range offsetting the current monthe by 1 and use null for the end month wich gives you the last month in the time dim.

  • Requesting guidance on how best to deal with removal of CreateElementSteps for tables when option to 'script validation for new constraints' is enabled during schema compare

    I have a DeploymentPlanModifer subclass that is responsible for removing certain tables from a deployment plan under specific conditions. It is relatively trivial to find the
    CreateElementSteps I need and subsequently remove them via
    DeploymentPlanModifier.Remove(), but...
    ... if in my comparison I have enabled the 'Script validation for new constraints' option, the deployment plan will contain a
    DeploymentScriptDomStep with a Batch containing AlterTableConstraintModificationStatements for tables with foreign key constraints. My problem starts here - there will be an orphaned
    AlterTableConstraintModificationStatement for each of the tables that I removed. Obviously, execution of the generated script comes to a grinding halt when asking SQL Server to to alter a table that is never created.
    I'm able to get around this by digging around in the aforementioned batches and removing the orphaned alter statements, but this seems really hacky, which makes me think I'm missing the proper way of dealing with this.
    So... if anyone is aware of a more correct way of avoiding this problem, I would really appreciate finding out more about it.
    Thanks in advance for any help. :-)

    Hi Greg. Unfortunately there is not an easy solution here. Walking the deployment model, spotting potential issues and excluding them really is what you have as an option here. The alternative is to pre-process the dacpac to have it in the form you want,
    but I'm not sure if this is an option in your case and it also has limitations.
    Regards,
    Kevin

  • Problem in enabling constraint - after disabling and truncation of table .

    Hello Friends,
    I have a table called DRR_TABLES that has list of table names . The requirement is to truncate the tables present in DRR_TABLES except KEY_IDS table and table_name like '%TYPE%' table.
    written a procedure . successfullly truncating the tables from DRR_TABLES but while enabling constraints after truncation , I am getting problem in enabling constraints .
    ERROR at line 1:
    ORA-02270: no matching unique or primary key for this column-list
    ORA-06512: at "schema123.TRUNCATE_DRR_TABLES ", line 49
    ORA-06512: at line 1
    Heres is the code .
    PROCEDURE TRUNCATE_DRR_TABLES is
    x varchar2(200);
    v_tablecount number := 0;
    cursor c is select TABLE_NAME from DRR_TABLES where population_source='PUBLISHING' and TABLE_NAME != 'KEY_IDS' and TABLE_NAME NOT LIKE '%TYPE%';
    BEGIN
    DBMS_OUTPUT.PUT_LINE (' TRUNCATING DRR TABLES ...........');
    OPEN c ;
    LOOP
    FETCH c INTO x ;
    EXIT WHEN c%NOTFOUND;
    for c1 in (select table_name, constraint_name from user_constraints where TABLE_NAME = x and status ='ENABLED' ORDER BY CONSTRAINT_TYPE DESC )
    loop
    begin
    execute immediate ('alter table '||c1.table_name||' disable constraint '||c1.constraint_name|| ' cascade');
    NULL;
    end;
    end loop;
    EXECUTE IMMEDIATE 'TRUNCATE TABLE ' || x ;
    v_tablecount := v_tablecount + 1 ;
    DBMS_OUTPUT.PUT_LINE('TABLE TRUNCATED :'|| x );
    END LOOP ;
    DBMS_OUTPUT.PUT_LINE (' TOTAL TABLES TRUNCATED ' || v_tablecount );
    CLOSE c;
    OPEN c ;
    LOOP
    FETCH c INTO x ;
    EXIT WHEN c%NOTFOUND;
    for c2 in (select table_name, constraint_name from user_constraints where TABLE_NAME = x and status = 'DISABLED' ORDER BY CONSTRAINT_TYPE)
    loop
    begin
    execute immediate ('alter table '||c2.table_name||' enable constraint '||c2.constraint_name);
    NULL;
    end;
    end loop;
    END LOOP ;
    CLOSE c ;
    END TRUNCATE_DRR_TABLES ;
    LINE 49 is the line corresponding to enable constraint statement.
    Edited by: kumar73 on 3 Sep, 2012 11:44 PM

    It is such a pity that a user having 321 posts till date is unaware of basics of Posting a Question.
    1. You need to provide us with your Oracle version
    select * from v$version;2. You need to understand and get accustomed to using tags before and after Code or SQL's for better readability.
    3. You need to provide us with the Table Structure and the Constraints Definition.
    There are many things that looks like Bad Coding practices:
    <font face="Times New Roman" size=2>
    1. Avoid RBAR (Loops).
    2. Implement Bulk Collect.
    3. Why do you need to disable the constraints before truncating? Are you kind of handling the Referential Integrity Constraints?
    4. Duplicate checking of Disabled Constraints.
    5. When the procedure is being executed at Production Environment, are you going to Monitor the DBMS_OUTPUT? Why not Log the Statements into a LOG Table?
    6. Why use a TableCount variable? Would the TableCount Variable be not equal to the Number of Records returned by Cursor C?
    7. What is the need to use a NULL statement after every Execute Immediate?
    8. What is the Need to surround each execute Immediate with Begin .. End block?
    9. Where is your Exception handling Block? Forgot to write?
    </font>
    What has been your effort in finding which Constraint/Table is causing you the trouble?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • ENABLE CONSTRAINT

    Hello All,
    version details :
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
    OS :
    SunOS 107 5.10 Generic_125100-10 sun4u sparc SUNW,Sun-Fire-V890
    Issue :
    I have executed a PLSQL which enables all the disabled constraints in a schema....
    Enabling one constraint is taking 15 hours...this step has not take this much time previously...
    There is no blocking session in V$lock....
    The object is locked by only the current session in v$locked_object...
    I know killing and reexecuting the step might solve the issue but i want to know for sure what is blocking it before killing it......'
    Alert log shows no sign execute for redo switch.......
    the hanging statement is below,
    ALTER TABLE UC_ADDRESS_INFO_TX ENABLE CONSTRAINT FK_ADDR_INFO_ROLE_MAP_CD
    Thanks in advance
    Vijay G

    No it`s not because the same table .. the process is below,
    i take an export of production DB, I do structure import ,then i disable the constraints ,then import few required tables alone for the application then i enable the constraints and then i do an analyze . The whole process takes 5 hours now it`s been fifteen hours.
    I have done individual enable before but why is this taking time... i am going to change this into enable novalidate sort but i wnated to know why it is hanging before i do any changes.......
    Regret for the inconvenience,
    Thanks ,
    Vijay G

  • Error in enabling constraints

    Hi everybody,
    i have 2 databases d01 and d02. i have same no and same objects on both the databases.
    i am exporting data for 1 subscriber from d01 and importing into d02.during importing data to d02 first i disable all constraints of the tables in d02 then importing the data which i have exported from d01 then i am enabling the constraints in d02.
    my problem is that at the time of enabling the data i have encountered some errors as follows.
    Error while Alter Table PORTFOLIO_CRITERIA_CONDITIONS enable novalidate
    constraint XFK3PRTF_CRITERIA_CONDITIONS
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Error while Alter Table PORTFOLIO_CRITERIA_CONDITIONS enable novalidate
    constraint XFK3PRTF_CRITERIA_CONDITIONS
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Error while Alter Table PORTFOLIO_CRITERIA_CONDITIONS enable novalidate
    constraint XFK3PRTF_CRITERIA_CONDITIONS
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Error while Alter Table PORTFOLIO_TYPE2ATTRIBUTE enable novalidate constraint
    XFK12PORTFOLIO_TYPE2ATTRIBUTE
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Error while Alter Table PORTFOLIO_TYPE2ATTRIBUTE enable novalidate constraint
    XFK12PORTFOLIO_TYPE2ATTRIBUTE
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Error while Alter Table PORTFOLIO_TYPE2ATTRIBUTE enable novalidate constraint
    XFK12PORTFOLIO_TYPE2ATTRIBUTE
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Error while Alter Table PORTFOLIO_TYPE2ATTRIBUTE enable novalidate constraint
    XFK12PORTFOLIO_TYPE2ATTRIBUTE
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    PL/SQL procedure successfully completed.
    can u please tell me what is the error.
    Thanks and regards
    Subrata

    Hallo,
    i guess, that you use dynamic sql here, something like
    declare
    v_sql varchar2(30);
    begin
    v_sql := 'Alter Table PORTFOLIO_CRITERIA_CONDITIONS enable novalidate
    constraint XFK3PRTF_CRITERIA_CONDITIONS';
    execute immediate v_sql;
    Then, you have to increase the length of v_sql. It's too small !
    Regards
    Dmytro

  • Enabling Constraints

    Hi All,
    Some generic conceptual questions.
    Oracle Database Version: 11.1.0.7
    1) Is there any time difference between enabling constraint on a Non-partitioned table and enabling constraint on a partitioned table, both tables having same no. of records?
    2) Suppose, we have 3 tables A, B and C.
    B and C have FK on Table A. After loading data I want to enable constraints on table B and C. Can I do that in parallel? Or do I have to wait for one table to enable constraint and then start enabling FK constraint for the second table? Is there some locking mechanism, which enables lock on Table A while enabling FK on table B is happening?
    Thanks,
    Ishan
    Edited by: Ishan on May 12, 2012 3:54 PM

    >
    Hi,
    1) Is there any time difference between enabling constraint on a Non-partitioned table and
    enabling constraint on a partitioned table, both tables having same no. of records? http://docs.oracle.com/cd/B10501_01/server.920/a96521/partiti.htm
    =====================
    Partitions and subpartitions of a table or index all share the same logical attributes. For example, all partitions (or subpartitions) in a table share the same column and constraint definitions, and all partitions (or subpartitions) of an index share the same index options. They can, however, have different physical attributes (such as TABLESPACE).
    ======================
    2) Suppose, we have 3 tables A, B and C.
    B and C have FK on Table A. After loading data I want to enable constraints on table B and C.
    Can I do that in parallel? Or do I have to wait for one table to enable constraint and then start
    enabling FK constraint for the second table? Is there some locking mechanism, which enables
    lock on Table A while enabling FK on table B is happening?Why in parallel? AFAICS from the docco above, enabling CONSTRAINTs is a "binary" thing for all partitions - it's
    either enabled or it's not.
    Are you enabling this on a production server while updates are taking place? You might wish to consider
    looking at DEFERRABLE? But, you use the term "loading" so this isn't prod?
    Googling "enable constraint partitioned table" and "constraint deferrable oracle partitioned table" gave several
    interesting pages which may be of interest, but I don't know enough about your case to help further.
    HTH all the same,
    Paul...
    IshanEdited by: Paulie on 12-May-2012 20:42

  • Enable constraints in parallel

    Hi,
    I am in the process of seeding up import.
    In our Datawarehouse environment enabling constrainta during import takes lot of time..To improve the performance of this step, i created constraints script seperately added parallelism in all commands (eg: alter table x1 add constraint xc1 .....enable parallel 4;)
    i changed degree os paralllelism of each table to 4 , i included following command at the start of the script.
    alter session force paralllel ddl parallel 4;
    Still constraints are not being enabled in parallel.
    How can i make these constraints enable step uses paralllelism.
    Is there is any other way to improve enable constraint performence during import.
    We are on 10.2.0.4 ...sun solaris 10 and we are using data pump.
    Thanks
    Pramod

    To speed up the import use exclude=statistics parameter
    see this link for enabling index
    http://www.asktherealtom.ch/?p=214

  • Saving to SharePoint works only half the time for Windows 7 Users--all the time for Windows XP users

    We have a SharePoint 2010 Environment with hardware load balancing, 2 WFEs, 2 Apps Servers and 1 SQL Server. This was built in October 2013. Office Integration and Saving back to SharePoint works all of the time for users on XP. It works sporadically for
    users on Windows 7. When Windows 7 users do the following:
    Opening an Office Document from computer and saving it to SharePoint
    Within a Document Library, using Save As from an opened document
    When selecting in a Document Library from the Document Tab> “New” and then the desired content type
    Send> Save to SharePoint from within Office Document
    They may either be brought to the SharePoint library (correct) or to My Documents (incorrect).
    In the case of number 1 (Opening an Office Document from computer and saving it to SharePoint)--using Save and Send will sometimes open the SharePoint library and sometimes open My Documents.
    Our URL is https://CompanyName.domainname.com/Sites/SiteCollectionName
    The intermediary "Sites" is actually a blank path.
    When My Documents is opened I've noted with Fiddler (a web debugger) that we get a 404 on sites:
    Could this be the issue?

    Some things to double check:
    Ensure that you have sticky sessions enabled on your load balancer
    Check that your WebDav calls are making it to the server
    Ensure that you have a root site collection in all your web apps
    Just out of curiosity, what is the http request look like for the 404 error?
    Chris Givens CEO, Architecting Connected Systems
    Blog Twitter

  • HT204074 What is the point of the 90 day timer for associated apple ID's?

    Why did apple enable this stupid 90 day timer for purchases between apple ID's?

    Welcome to the Apple Community.
    It's to stop you logging into everyone else's iTunes match/in the cloud account and effectively listening to any music that you want without paying for it..

  • ITunes Charged me 9 times for 1 purchase and Support has not resolved it

    iTunes charged me 9 times for a single transaction and I'm getting no where in getting it resolved.
    Nov 21, 2005: Purchased Season 2 of Lost (videos) for $13.93
    Nov 21-22 2005: Was charged over and over again, totaling 9 times for the single purchase
    Nov 23: 2005: Initial contact to iTunes support; they tell me this is normal that small charges may be applied to your account as 'authorization requests' Of course, these weren't normal or small charges it was billing error that charged me 9 times for a single purchase.
    After contacting them again to reiterate the fact that I was charged 9 times for the purchase, my mail is finally read and an acknowledgments is made that something went wrong. They tell me "We have investigated and resolved the issue you reported. Within 72 hours, you will receive a refund for the duplicate charges through your Paypal account, coming from the iTunes Music Store."
    Nov 29 2005: I wait patiently beyond 72 hours for all the refunds to be put in place; some are completed but 2 charges still show. One at the time is valid, its the purchase I made. ** (Not valid today because the music shows as not payed for anymore) **
    I contact Support on the 29th stating all of the refunds have not come in, they tell me there is nothing they can do and that I need to contact Paypal. "The best way to resolve this issue is to contact PayPal and advise them of the situation."
    I talk to a senior person at Paypal and they tell me there is nothing they can do, that iTunes must issue the refund. Nice. Circles!
    I write back again to iTunes Support stating that I had contact Paypal and they stated that there is nothing they can do regarding the refund, that Paypal needs to resolve the matter. iTunes writes back:
    "We're sorry that you have experienced this problem with your PayPal account. Unfortunately, we will not be able to notify you when the matter is resolved. Our engineers are trying to correct the errors, and we hope to enable PayPal payment processing as soon as possible. We appreciate your patience."
    OK, they at least acknowledge there is a problem (even if they are blaming it on Paypal) and that they are working on it.
    Dec 05 2005: Follow up today to get a status as to when I will be refunded for their error, I get no update, only the following response:
    "We apologize in the delays in processing this refund, and we thank you for your patience."
    I follow up stating I would like the full amount refunded; it seems the original purchase is listed as not payed for so I can't even watch what I purchased! At this point I just
    want to be refunded so I can cancel and delete my iTunes account.
    Whats bad:
    - Can't reject the charge on my cc since it will get rejected back to paypal, not iTunes/Apple (paypal will then likely just close my account and come after me for the money)
    - Can't reject charges in paypal, they don't seem to do that
    - iTunes/Apple support mails are incredibly canned responses and impersonal
    - I'm at the mercy of iTunes/Apple in resolving this; there is no ETA for them to resolve this issue that they created.
    - I've asked to be called regarding this matter and the requests have been ignored
    Any advice to get this resolved would be appreciated. It is has been an incredibly frustrating experience; I don't much like the idea being forced to pay off a credit card charge for services that I have not actually received and which were charged to me in error.
    Mac OS X (10.4.3)

    This is EXACTLY what happened to me and many others. Tech support returned most of my money but not all of it. Figure that one out! It is clear no music is downloaded (or in queue), it is clear an unknown error message is produced, and it is clear we, the consumer, are still being charged anyway. Will Apple require a credit card from its customers and alienate those that do not wish to use a credit card? Will Apple insult its customers and make silly suggestions such as 'Use an iTunes gift card' in much the same way a forum moderator has already recommended?
    I have an idea: Acknowledge the problem publicly (via email, for example) and fix it in a future update. Customers will be more understanding if they know there is a temporary problem and Apple is working hard to fix it. Oh, and return our money, please!
    Windows XP Pro
      Windows XP Pro  

  • This window service has timer for update record once in a day at 5 pm.

    Hi Guys Please help me.
    Actully i create a window service. This window service has timer for update record once in a day at 5 pm.
    I have write a code but it is not working fin
    Here is my code.
    App.Config File:-
    <appSettings>  
        <add key="IsTrace" value="YES"/>
        <add key="SourceServerPath" value="Server=DATASERVER\SQL2008R2;database=WDSBHN;User ID=Wireless;pwd=chetu@123"/>
        <add key="ArchiveServerPath" value="Server=CHETUIWK091\SQL2008R2;database=Demo;User ID=sa;pwd=Chetu@123"/>
        <add key="ReportHour" value="22"/>
        <add key="ReportMinut" value="01"/>
        <add key="ReportSecond" value="20"/>
        <add key="ReportMilisecond" value="230"/>
        <add key="DailyTimer" value="tmrProductionDataTransfer"/>
        <add key="MonthlyTimer" value="tmrProductionCleanUp"/>
        <add key="ActionParameter" value="WDS-DataTransfer"/>
      </appSettings>   
    Vb.Net Code:-
    Protected Overrides Sub OnStart(ByVal args() As String)
            ' Add code here to start your service. This method should set things
            ' in motion so your service can do its work.
            Try
                LoggingTracing.WriteTrace("DataTransfer Service START " & Now.ToLongDateString & " " & Now.ToLongTimeString())
                '***Get the Time of service run
                Dim svcRunTime As System.DateTime = Configuration.ConfigurationManager.AppSettings("ServiceRunTime")
                '***differance of these two time
                Dim ts As TimeSpan = DateTime.Now.Subtract(svcRunTime)
                '***production data transfer
                tmrProductionDataTransfer.Enabled = True
                tmrProductionDataTransfer.Interval = 1000
                tmrProductionDataTransfer.Start()
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    Private Sub tmrProductionDataTransfer_Elapsed(sender As Object, e As Timers.ElapsedEventArgs) Handles tmrProductionDataTransfer.Elapsed
            Try
                Dim time As Date = Date.Now
                Dim currHour As Integer
                Dim currMinute As Integer
                Dim currnSecond As Integer
                Dim reportHour As Integer
                Dim reportMinute As Integer
                Dim reportSecond As Integer
                Dim reportMiliSecond As Integer
                Dim actionParameter As String = Configuration.ConfigurationManager.AppSettings("ActionParameter")
                Dim actionTimerName As String = Configuration.ConfigurationManager.AppSettings("DailyTimer")
                currHour = time.Hour
                currMinute = time.Minute
                currnSecond = time.Second
                reportHour = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportHour"))
                reportMinute = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMinut"))
                reportSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportSecond"))
                reportMiliSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMilisecond"))
                If currHour = reportHour AndAlso currMinute = reportMinute AndAlso currnSecond = reportSecond Then
                    ObjProductionDataTransfer.CopyDataToArchiveServerDayWiseDL(Configuration.ConfigurationManager.AppSettings("SourceServerPath"), Configuration.ConfigurationManager.AppSettings("ArchiveServerPath"),
    actionTimerName, time, actionParameter)
                End If
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    It is running at 5 pm , but run 3 times, for that records has updated 3 time 
    How i can resolve it, If any problem in this code please give me the write direction or code. And this thing i have been searching for 3 days , but stile i didn't get any solution
    sonesh

    Sonesh,
    Sorry but you have posted to a forum that deals exclusively with questions/issues about customizing and programming Microsoft Project, a planning and scheduling application. I suggest you delete this post and find a more appropriate forum.
    John

  • MacBook Pro takes much time for Shutdown (More than 1 min.)

    I have a MacBook Pro, and some weeks ago, it takes much time for shutdown.
    I've tried to install the 10.5.2 update, but nothing solves.
    My mac takes for shutdown 1 min & 30 seconds every time. I don't understand. Why?
    What can I do? I tried to repair permissions and reset the PMU, but the problem still there.
    Help me! Please!
    Thanks
    Sorry, but I'm spanish and it's possible that I've made more mistakes writing in English.

    Thanks. I tried to dissable an EyeTv option, then EyeConnect don't appears in the Activity Monitor. This is the result:
    Now, my MacBook Pro takes only 35 seconds for shutdown. I think is better than yesterdey, but is more than the 5 seconds that you described in the last post. Is 35 seconds a good time? In this 35 seconds, I only can see the background image, without icons and without the finder menu bar. After 35 seconds, Mac is off.
    How can I disable iDisk sync? I have a free mac Account, but is expired and then I can't use iDisk, only the name in iChat. But, is iDisk enabled?

  • Changing sampling time for logging data in DSC

    currently I created lots of shared variables by Modbus server. I'm wondering when I active logging data to Citadel, there is any option for change sampling time for logging data or not. I only saw option for changing base on percentage of value differences.
    Since I want to export them to MS Excel later, I want decrease the number of sample datas by decreasing sampling time.
    Thanks in advance.

    This is my idea that i try
    First, I add Enqueue Message for Enable time case
    Then, I create Enable time cases and write box diagram fallow below pic.
    But when i run program,it don't work, time don't count 
    Please help me.

  • What does the option 'Settings- incorrect waiting time for status' do ?

    Hi All
    We had an infopackage that seemed to be hanging this morning . (Yellow Status) I was advised to access the option 'Settings->incorrect waiting time for status' and set the wait time to 7 minutes (from 7 hours). This changed the status to Red.
    I then re-ran the ipak and reset the ''Settings->incorrect waiting time for status'  to 7 hours. This made the red process go back to yellow and the run time started going up again.
    Can someone explain what is going on. Have I got 2 instances of the same ipak running simulateously. Why did the red one come back to life even thoug I deleted the request in data target for that ipak.
    Thanx
    HKF

    Thanks, Verdi - the first time I enabled,/ or disabled, I hadn't realised what had actually changed, as I think I'm so used to seeing my links open in Safari anyway!

Maybe you are looking for

  • Does Apple store offer hard drive removal?

    Hi I have to lost some data on my MacBook Pro and need to send to a data recovery specialist but they are asking me to remove the drive to send to them. I would rather not attempt removal myself ... Can anyone tell me if the Apple store can/will do t

  • IPod Classic 160g Won't Hold Songs past 2 gigs or so.

    Over the past few months my ipod classic had been having periodic playback problems. I listen to it at work and I'd say it gets a solid 6 hours a day on weekdays. It's about 3 years old. The issue was that it would pause songs every hour or so, then

  • How do I get rid of com.teamviewer.

    How do I clean this up? I don't have teamviewer installed any more, but this is persistent. Thanks

  • Validation issues with XSD

    I'm trying to validate a xml file with this schema: <?xml version="1.0" encoding="UTF-8"?> <xsd:schema     xmlns:xsd="http://www.w3.org/2001/XMLSchema"                xmlns="http://www.jeromedroz.org/etc/lexicon.xsd"                targetNamespace="h

  • Using Time Machine????

    Hello, I am trying to back up my files before I install WIndows XP. I click on "Time Machine" and I get a message telling me I need to set it up. I go to set up and it asks me to choose a backup disk. I click on choose a backup disk and the only one