Connection is taking time

hi all
i am using oracle database 11g Release 2
linux 5
while connecting to database its taking to much time and then throughing error.
SQL> connect sys/nisha123@racdb1 as sysdba
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified
Warning: You are no longer connected to ORACLE.plz help me out thanks.

nisha wrote:
hi all
i am using oracle database 11g Release 2
linux 5
while connecting to database its taking to much time and then throughing error.
SQL> connect sys/nisha123@racdb1 as sysdba
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified
Warning: You are no longer connected to ORACLE.plz help me out thanks.To connecting database using sqlplus sys/nisha123@racdb1 as sysdba you have to do following operations
1) Start listener and provide registration your instance in this listener.To doing this you can use static or dynamic ways.For example to static registration using NET MANAGER($ORACLE_HOME/bin/./netmgr ) or manually you can create listener.ora file in $ORACLE_HOME/network/admin directory and add below lines
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (GLOBAL_DBNAME = racdb1)
      (ORACLE_HOME =/u01/app/oracle/product/11.2.0/db_1)
      (SID_NAME =racdb1)
LISTENER =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = <server IP address>)(PORT = 1521))
  )After that
$ORACLE_HOME/bin/./lsnrctl stop
$ORACLE_HOME/bin/./lsnrctl start2) Again in $ORACLE_HOME/network/admin directory you need create tnsnames.ora file and add below lines
SBSERVER =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = <ip address>)(PORT = 1521))
    (CONNECT_DATA =
      (SERVICE_NAME = racdb1
  ) 3) Now you have to create passwordfile for this database if does not exists using orapwd
After that you can connect database.

Similar Messages

  • In one website, it takes to much time to load the page, in other site its not taking time, so do i need to enable or change any settings

    in one website, its taking time to load the page, on other PC its not taking any time( with internet explorer) in my PC other websites are opening quickly but this website takes too much time with firefox

    Zepo wrote:
    My iMac has been overwhelmed almost since I bought it new.  After some digging the guiness bar suggested its my Aperture library being on the same
    internal Tera byte drive as my operating system.
    Having a single internal hard drive overfilled (drives slow as they fill) is very likely contributing to your problems, but IMO "my Aperture library being on the same internal Tera byte drive as my operating system" is very unlikely to be contributing to your problems. In fact the Library should stay on an underfilled (roughly, for speed, I would call ~half full "underfilled") internal drive, not on the Drobo.
    Instead build a Referenced-Masters workflow with the Library and OS on an internal drive, Masters on the Drobo, OS 10.6.8 (there have been issues reported with OS 10.7 Lion). Keep Vault backup of the Library on the Drobo, and of course back up all Drobo data off site.
    No matter what you do with i/o your C2D Mac is not a strong box for Aperture performance. If you want to really rock Aperture move to one of the better 2011 Sandy Bridge Macs, install 8 GB or more of RAM and build a Referenced-Masters workflow with the Library and OS on an internal solid state drive (SSD).
    Personally I would prefer investing in a Thunderbolt RAID rather than in a Drobo but each individual makes his/her own network speed/cost decisions. The Drobo should work OK for referenced Masters even though i/o is limited by the Firewire connection.
    Do not forget the need for off site backup. And I suggest that in the process of moving to your new setup it is most important to get the data safely and redundantly copied and generally best to disregard how long it may take.
    HTH
    -Allen Wicks

  • Using Materilaized view in a query .. query is taking time????

    Hi I have a query :-
    SELECT rownum as id, u.last_name, u.first_name,u.phone phone, u.empid,u.supervisor id
    FROM emp_view u -- using view
    CONNECT BY PRIOR u.empid = u.supervisor_id
    START WITH u.sbcuid = 'ph2755';
    here emp_view is a view .
    ------ The above query is taking 3 sec to execute.
    Then I created Materialuized view emp_mv and the the MV query is same as emp_view view query.
    After this i executed following sql
    SELECT rownum as id, u.last_name, u.first_name,u.phone phone, u.empid,u.supervisor id
    FROM emp_mv u -- using materialized view
    CONNECT BY PRIOR u.empid = u.supervisor_id
    START WITH u.sbcuid = 'ph2755';
    this query is taking 15 sec to execute..... :(
    can anyone please tell me why MV query is taking time????

    Hi,
    In your first case you query a view, meaning that you query the underlying tables. These probably have indexes and stats are updated.
    In you second case you query a materialized view, meaning that you query the underlying base table of that mview.
    This probably do not have the same indexes to support that query.
    But of course, I'm just guessing based on the little information provided.
    If you want to take this further, please search for "When your query takes too long" and "How to post a tuning request".
    These two threads holds valuable information, not only on how to ask this kind of question, but also how to start solving it on your own.
    Regards
    Peter

  • Do I need to keep my external hard drive connected at all times for time capsule?

    Do I need to keep my external hard drive connected at all times for time capsule?

    Hi,
    I have a similar question. I have backed up my external hard drive through my computer, onto my TC. When I go into TM, it doesn't show the external hard drive unless it is connected to the computer. Can I access the info from the external hard drive that is on the TC if I don't have the hard drive plugged in? If so, how can I do that?
    Thanks,
    Bernadette

  • Issues with changing connection at run-time

    Post Author: dmazourick
    CA Forum: Data Connectivity and SQL
    Weu2019ve tried a lot of different ways to resolve this issue, but are getting every time the different result.
    Probably someone deal with that issue before and know how to correctly resolve it.
    Weu2019re using Crystal Reports Runtime Components X+ (X, XI, XI R2) u2013 all of them has this issue.
    We need client application to connect to multiple data sources u2013 user chooses report, chooses data source and we show the report for specified data source.
    The data sources are tables or stored procedures stored in different databases on different servers.
    For sure, every data source for a single report has the same structure, but that doesnu2019t matter.
    The issue is: when the name of the database on one server is the same as the name of database on second server, the connection caching occurs.
    How we can check that:
    1.       Weu2019re running report for Server1:<DBN> - report shows data from Server1.
    2.       Weu2019re opening second report for Server2:<DBN> - report shows data from Server1.
    3.       Weu2019re closing application and run 1-2 in opposite order, now both reports show data from Server2.
    Weu2019ve tried different approaches u2013 below is a code sample that opens the report for specific connection.
    Juts to be sure that no one will ask u2013 u201CAre you sure youu2019re passing the correct connection info etc.u201D. Yes! We are sure because weu2019re trying to fix this issue for a long time and tried a lot of different approaches and still cannot find the right solution.
    The code looks like below. This is VB6 code, but also the same situation was tried on VC++ 6.0
    Weu2019re not looking into CR.NET solution for now.
    =================================================
    Sub DisplayReport(Server as String, DB as String, UID as String, PWD as String, viewer as Object)
        Dim app As New CRAXDRT.Application
        Dim report As CRAXDRT.report
        Dim database As CRAXDRT.database
        Dim table As CRAXDRT.DatabaseTable
        Dim par As CRAXDRT.ParameterFieldDefinition
        Set report = app.OpenReport("D:\TestReport_X.rpt")
        report.database.LogOnServer "pdssql.dll", Server, DB, UID, PWD
        Set table = report.database.Tables(1)
        table.SetLogOnInfo Server, DB, UID, PWD
        table.Location = table.Name
        report.database.Verify
        viewer.ReportSource = report
        viewer.ViewReport
    end sub
    =================================================
    The result of above code is the following:
    1.       If we will pass the same viewer and will use different Server u2013 the report will be displayed correctly
    2.       If we will pass different viewers and will use different Server u2013 the reports will contain same data
    The result of above code also depends from the version of Crystal Reports the report was designed in:
    1.       For Report designed in 8.5 u2013 passing of the same viewer with same connection info second time will refresh report
    2.       For Report designed in X, XI, XI R2 u2013 no refresh
    Also, a slight modification of the above code helps for reports designed in XI to work properly, but not for reports designed in X and 8.5:
    1.       Before calling LogonServer, make the following: DB = DB & u201C;u201D & Int(rnd()*32767)
    That makes report designed in XI to display properly in different viewers, but doesnu2019t have any impact to X and no any impact to 8.5
    Weu2019re really looking for any help in this question

    Post Author: fburch
    CA Forum: Data Connectivity and SQL
    I am having similar problems and some successes.
    I have 70+ reports and now suddenly I want to point them at two different servers, but at databases with the same name like you talked about.
    I first just tried the following:
    #1. Load report:
    Dim myReport As New ReportDocument
    myReport.Load(filename)
    #2. Pass in parameter values
    ''Get the collection of parameters from the report
    Dim crParameterFieldDefinitions As ParameterFieldDefinitions = r.DataDefinition.ParameterFields
    ''Access the specified parameter from the collection
    Dim crParameter1 As ParameterFieldDefinition = crParameterFieldDefinitions.Item(ParamName)
    ''Get the current values from the parameter field. At this point
    ''there are zero values set.
    'crParameter1Values = crParameter1.CurrentValues
    ''Set the current values for the parameter field
    Dim crDiscrete1Value As New ParameterDiscreteValue
    If crParameter1.ValueType = FieldValueType.DateField Or crParameter1.ValueType = FieldValueType.DateTimeField Then
    If ParamValue Is System.DBNull.Value Then
    crDiscrete1Value.Value = CDate("1/1/1900")
    ElseIf ParamValue Is Nothing Then
    crDiscrete1Value.Value = CDate("1/1/1900")
    Else
    crDiscrete1Value.Value = ParamValue
    End If
    ElseIf crParameter1.ValueType = FieldValueType.StringField Then
    If ParamValue Is Nothing Then
    crDiscrete1Value.Value = ""
    Else
    crDiscrete1Value.Value = ParamValue
    End If
    ElseIf crParameter1.ValueType = FieldValueType.BooleanField Then
    If ParamValue Is Nothing Then
    crDiscrete1Value.Value = False
    ElseIf ParamValue.ToString.ToUpper = "TRUE" Then
    crDiscrete1Value.Value = True
    Else
    crDiscrete1Value.Value = False
    End If
    ElseIf crParameter1.ValueType = FieldValueType.NumberField Then
    If ParamValue Is Nothing Then
    crDiscrete1Value.Value = 0
    Else
    crDiscrete1Value.Value = ParamValue
    End If
    Else
    If ParamValue Is System.DBNull.Value Then
    crDiscrete1Value.Value = Nothing
    ElseIf ParamValue Is Nothing Then
    crDiscrete1Value.Value = Nothing
    Else
    crDiscrete1Value.Value = ParamValue
    End If
    End If
    ''Add the first current value for the parameter field
    Dim crParameter1Values As New ParameterValues
    crParameter1Values.Add(crDiscrete1Value)
    ''All current parameter values must be applied for the parameter field.
    crParameter1.ApplyCurrentValues(crParameter1Values)
    #3 Set "Table Log in info" (most of my reports using stored procedures, but I guess I still needed this step).
    Dim CrTables As Tables = r.Database.Tables
    Dim CrTable As Table
    Dim crtableLogoninfos As New TableLogOnInfos()
    Dim crtableLogoninfo As New TableLogOnInfo()
    With crConnectionInfo
    .ServerName = connectionParser.GetServerName(connectionString)
    .DatabaseName = connectionParser.GetDatabaseName(connectionString)
    If connectionParser.DoesUseIntegratedSecurity(connectionString) = True Then
    .IntegratedSecurity = True
    Else
    .UserID = connectionParser.GetServerUserName(connectionString)
    .Password = connectionParser.GetServerPassword(connectionString)
    .IntegratedSecurity = False
    End If
    End With
    For Each CrTable In CrTables
    crtableLogoninfo = CrTable.LogOnInfo
    crtableLogoninfo.ConnectionInfo = crConnectionInfo
    CrTable.ApplyLogOnInfo(crtableLogoninfo)
    If InStr(CrTable.Location, ".dbo.") = 0 Then
    CrTable.Location = crConnectionInfo.DatabaseName + ".dbo." + CrTable.Location
    End If
    Next
    If r.Subreports.Count > 0 Then
    Dim crSections As Sections
    Dim crSection As Section
    Dim crReportObjects As ReportObjects
    Dim crReportObject As ReportObject
    Dim crSubreportObject As SubreportObject
    Dim crDatabase As Database
    Dim subRepDoc As New ReportDocument()
    'SUBREPORTS
    'Set the sections collection with report sections
    crSections = r.ReportDefinition.Sections
    'Loop through each section and find all the report objects
    'Loop through all the report objects to find all subreport objects, then set the
    'logoninfo to the subreport
    For Each crSection In crSections
    crReportObjects = crSection.ReportObjects
    For Each crReportObject In crReportObjects
    If crReportObject.Kind = ReportObjectKind.SubreportObject Then
    'If you find a subreport, typecast the reportobject to a subreport object
    crSubreportObject = CType(crReportObject, SubreportObject)
    'Open the subreport
    subRepDoc = crSubreportObject.OpenSubreport(crSubreportObject.SubreportName)
    crDatabase = subRepDoc.Database
    CrTables = crDatabase.Tables
    'Loop through each table and set the connection info
    'Pass the connection info to the logoninfo object then apply the
    'logoninfo to the subreport
    For Each CrTable In CrTables
    crtableLogoninfo = CrTable.LogOnInfo
    crtableLogoninfo.ConnectionInfo = crConnectionInfo
    CrTable.ApplyLogOnInfo(crtableLogoninfo)
    If InStr(CrTable.Location, ".dbo.") = 0 Then
    CrTable.Location = crConnectionInfo.DatabaseName + ".dbo." + CrTable.Location
    End If
    Next
    End If
    Next
    Next
    #4 go get the data
    crv.ReportSource = myReport
    crv.Refresh()
    #5 Call export to disk function.
    This was not changing server - did not realize it was a caching problem as you suggested. That makes sense. So anyway, then of course I threw a verify database statement on there, before I get the data. Now looks like this:
    #1 Load Report
    #2. Pass in parameter values (dummy values that will generate schema of table without having to actually run long running procedures, i.e. select (cast 1 as int) as somefield1, cast(2.0 as numeric(10,0)) as somefield2
    #3 Set "Table Log in info"
    #3b Verify the database which seems to be a necessity:
    myReport.VerifyDatabase()
    #3c Re-populate the report with real parameter values, same as #2 but this time with the ones that will generate the real data
    #4 go get the data
    #5 Call export to disk function.
    This does work, some of the time. When the datasource underlying report are tables, it works. I made a dummy crystal report with lots of different types of params (stored procedure underlying database) - this also worked!
    Unfortunately, when I run this against the majority of my reports, I get this stupid "invalid mapping type value", for which I have not been able to resolve yet.
    I also tried putting a myreport.SetDatabaseLogon("","") -- what would this do, clear it out? (saw this referenced somewhere).
    Then I tried putting the real connection info in there as well ...
    myReport.SetDatabaseLogon(uid, pwd, serverName, DBname)
    I put this setdatabase thing before I called verifydatabase, which is where the process is bombing out and giving me invalid mapping type for the reports that do not run.
    At this point I am still working on solution. I have tried creating dummy report that used same parameter types as a report that was failing and voila - the dummy report worked. Anyway, let me know if you get your problem fixed and I will do the same. Looks like you are using a different method that I didn't notice "LogOnServer"

  • ITunes crashes my internet connection almost every time I launch it

    Hello,
    since my last upgrading to iTunes 10.1.2, (I did not do it for a long while), I am experiencing severe disconnections from the internet. These disconnections do not usually occur at the moment of the lauching, but a little bit later, when I am looking for a specific tune. The application seems freeze during its searching, then I lose my internet connection. It becomes not possible to retrieve the connection once lost, apart from restarting the computer. It is extremely frustrating. This occurs 3 times out of 4... Are some people experiencing the same problems as me, and will the developers do something?
    I am connected to a Neuf-SFR box router by the way of an Hercules Wifi key. I tried to remove the key and plug it again after the problem occurs, but nothing happened.

    Just for info, I just discovered the long long thread about the blank page instead of the iTunes store screen (cf http://discussions.apple.com/thread.jspa?threadID=2743839&tstart=0 ): I had the same trouble, that was the reason why I decided to upgrade to the last release of itunes. The end being, that now the goody good screen appears like before, but that the new release cuts my internet connection a few time after I've launched it.

  • I have connected a new time capsule to a dsl modem.  It doesnt see the internet. Airport utility says: Disconnected. But it isnt. Internet tab shows PPPoE. Must I enter Account Name or Password? If so, where do I find them? If not, what do I do?

    I have connected a new Time Capsule to a DSL modem using an ethernet cable . The modem is working fine and connected fine. But the Time Capsule doesnt seem to be talking to the modem.  If I click the internet Icon in Airport Utility  it shows Disconnected.If I click the Time Capsule icon and go to the internet tab it shows  Connect using PPPoE. Is that what it should be? In the box below there is place for an account name and password. DO I need to filll these out and if so what do I put there--information about the Time Capsule of informationabout the Modem? And where do I find the information.
    Or am I completely on the wrong track.

    Thanks. The modem is a Speedtouch ST585  v6. How do I know whether it is in adsl bridge?  Also this is a modem-***-router. Does that make a difference?
    If you did not put it in bridge then it is not in bridge..
    Connect a computer directly to the modem.. open the browser to either 192.168.1.254 or 10.0.0.138 (if neither of those work you will have to check the IP address your ISP has set).
    BTW who is your ISP and do they allow PPPoE.. for instance most ISP in UK do not use pppoe so you have no choice but to run the 585 as a router. In which case bridge the TC
    Anyway.. open the setup configuration in the Thomson and select a template that says bridge.. run through the wizard and it will then bridge the modem.
    And I am using Airport Utility 6.0. How do I get the earlier version?
    By reading the site link I just gave you.. downloading the utility and running it on your computer. Or simply google to 5.6 lion airport utility... that is the way I find things when I don't have the link memorised.
    Finally, AIrport Utility shows a number in a red dot next to the time capsule icon, currently 2. What is that for? What does it tell us?
    Firstly download the useful utility.. but the dots tell you something is wrong and preventing the TC from working.. if you open the utility it should tell you what the errors mean.. I cannot tell you what they are, but it is likely to be no internet connection and pppoe has failed.

  • MacBook Pro won't automatically connect to my Time Capsule for WiFi

    My 2012 MacBook Pro (non-retina) won't automatically connect to my Time Capsule for WiFi. I had issues with my Comcast router before, and i reset my time capusle a few times, is that th reason why now everytime i wake my macbook up it dosent automtically connect?

    Yes.. wireless after sleep or reboot is a problem. See the info from Tesserax.
    https://discussions.apple.com/community/wireless/airport?view=documents
    Unable to connect after sleep .. you will see it in the list.

  • How can i exclude my macbook backup on time capsule from other imac connected to same time capsule?

    we have several mac connected to same time capsule, how can i exclude one macbook backup from all the others mac accessing same time capsule?
    thanks

    Not exactly clear what you mean.. the TC will keep each Mac backup in its own sparsebundle.. it does this automagically.. The backups are not mixed.. all are kept separate.
    Or is this a security question.. you don't want people looking at the contents of the backup?
    You can increase the security of the TC.. but it is too late.. you should have done it when first installed. If you go to the setup you can change security (Secure Shared Disks) by selecting with Accounts.. the problem is you will lose access to all the existing backups. You really need to do a clean start.. create accounts for all the users and start again.
    Also note security is not a big feature here.. anybody with physical access to the TC can press the reset for 1sec and get access. It is a home device not a business device.

  • Can anyone recommend an external storage device to supplement my mac book air?  I already have a time capsule but want the new device to replicate the data on that so ideally would like a device that i can connect to the time capsule through a cable.

    Can anyone recommend an external storage device to supplement my mac book air?  I already have a time capsule but want the new device to replicate the data on that so ideally would like a device that i can connect to the time capsule through a cable. 

    Hi CJR
    I'm not sure how Time Capsule can be replicated onto your external drive but there is a USB port on the back of TC that can be hooked up to any recent external drive.
    Another thing to think about , besides a Time Capsule failure, is the theft of your Time Capsule, so it might be a good idea to consider separating any redundant back-up from your Time Capsule or both my be stolen.
    TC will back up until full and then begin deleting the oldest back-ups.  Mine is a 2TB Time capsule.
    My back-up plan is as follows:
    1.  Macbook Air back-up on Time Capsule though Time Machine backs up everything - I think it's about every 30 min or so.
    2.  Contacts, reminders, appointments, notes, email are backed up through iCloud.
    3.  iTunes and non-itunes purchased music is on iMatch (and no need to back-up) and any non-iTunes music is backed up on an HP external drive (in case Time Capsule dies)
    4.  Photos are on my MacBook Air and are backed up on my HP external drive.
    5.  Office documents (Excel, Powerpoint, Access etc) are stored in a Skydrive app (like iCloud) and Skydrive syncs these docuemnts with the MS  cloud and my old PC and does not alter their native format like storing in iCloud would do.
    Cheers

  • How do I connect an old Time Capsule to look for data from a previous OS?

    Hello. I replaced my old Time Capsule with a new one a few months ago, and broke in the new Time Capsule with a fresh backup of a clean 10.9 install after migrating my user account.
    Today, I noticed that there were some folders full of personal data that are neither on my MBP, nor in my Time Machine backups on the new Time Capsule. I am hoping that these folders still exist on my old Time Capsule which I used with 10.8.
    I'm wondering how to search through my old Time Capsule and its Time Machine backups. Specifically, I'm wondering how to connect it to my MacBook Pro, and whether I will be able to search for my (hopefully not) lost data through the Time Machine interface, or through the directory structure contained in Backups.backupdb.
    Can anyone help me out with a plan to proceed?
    Thank you very much.

    1. Turn off Time Machine in System Preferences
    2. Unplug new Time Capsule
    3. Turn off Wi-Fi in the menu bar
    4. Attach old Time Capsule to power
    5. Attach old Time Capsule to MBP via ethernet
    6. Wait for old Time Capsule to appear in Finder > Sidebar > Shared
    7. Select old Time Capsule in Finder > Sidebar > Shared and Connect to old Time Capsule
    8. Select the Data directory
    9. Double-click on the .sparsebundle file that represents the volume that was backed up on the old Time Capsule
    10. Hold down the option key and click on the Time Machine icon in the menu bar and select Browse Other Backup Disks...
    11. Select the Time Machine backup disk you would like to browse and choose Use Selected Disk
    12. Browse old Time Capsule backup in Time Machine environment, restore data as normal, exit Time Machine as normal
    13. Eject old Time Machine backups (the .sparsebundle you mounted) under Devices in Finder > Sidebar
    14. Eject old Time Capsule under Finder > Sidebar > Shared
    15. Disconnect ethernet; disconnect old Time Capsule from power.
    16. Plug in new Time Capsule (it boots); turn Wi-Fi on (reconnect to network, if necessary); turn Time Machine back on in System Preferences

  • Is there a way to see and have control over who connects to your time capsule wifi network?

    Ok, have this question. Have a time capsule wifi network. Have the latest mountain lion on my mac pro. I know if you go into airport utility, and you click on the picture of my timecapsule it shows what clients are connected to my time capsule aka using my internet etc.
    What I want to know, is there somewhere I can go on the mac where I can view who is connected to my time capsule wifi in more detail, see amounts of data they are using, and maybe even boot them off, or ban there computer from the network for a while if need be? Trying to assess what family members are using up all our data, and want to ban the appropriate offenders
    Even if Mac doesnt have anythink, if you know any third parties from the app store that have an app that is like a "tap" on the top of your Mac that shows networking details, that would be great too!
    Thanks heaps!

    Nope.. TC are not burdened with controls.. don't you know..
    In fact you will find it hard to find a wireless router on the market that mets your specs.. but there is a great 3rd party firmware.. called gargoyle.. this can be loaded like an official firmware in a NETGEAR WNDR3800 which is a fairly cheap very good solid wireless router.. bridge your TC behind this router running gargoyle and you can set quota for all your family members (kids I imagine). Quota can be set for daily, weekly even hourly.. and you can apply throttles or qos.. none of these controls even exist in the TC.

  • My iPod Touch is connected to my house internet and every few hours, it doesn't work so I have to shut it off and turn it back on which makes my iPod slower, how do I make it connect the whole time?

    My iPod Touch is connected to my house internet and every few hours, it doesn't work so I have to shut it off and turn it back on which makes my iPod slower, how do I make it connect the whole time?

    Device Not Recognised
    For PC
    http://support.apple.com/kb/TS1538
    For Mac
    http://support.apple.com/kb/ts1591

  • Ipod model mc544ll. version 4.3.3. Will no longer connect to face time or upload pictures

    My iPod model #mc544ll version 4.3.3 will no longer connect to face time. Also I cannot send pictures to my email. I am connected to the internet.

    terryconnors, Welcome to the Apple Supprt Communities!
    To continue using FaceTime, you must update to iOS 6.1.6 since device certificate is expired.
    (especially uploading photos for email)
    And you can't use older version at all times.
    (For me, I use newer version at all times)

  • Can't Connect to My Time Capsule Backups, Please Help!!!

    I have been using Time Machine/Time Capsule to back my data up for over a year. I bought a new MacBook Pro this morning. I did not want to use Migration Assistant to transfer everything over because there were many bugs and corruptions on my old disk and was scared that would all be transferred to my new machine. It was time for a fresh start.
    I set up my new computer and transferred most of the files I needed via a flash drive. I am now trying to set up my MacBook Pro to connect to my Time Capsule backup disk via Time Machine, but once I enter Time Machine it does not allow me to go "back in time" to see all of my previous backups and restore points. There are some really important files I am trying to get to, but this computer isnt connecting to the Time Capsule backups. The old computer has already been completely reformatted, but it is still able to access the Time Capsule backups.
    I have done some internet research and learned that Time Machine uses a computer's ethernet MAC address to allow access. There are some codes posted on various websites that allow to alter what Time Machine thinks you MAC address is so that you can access your backups with a new computer/different logic board. None of these Terminal workarounds worked for me. The Genius Bar and Apple Care couldn't help either.
    I am hoping somebody can help me out. I understand I can use my old computer to get into Time Machine and retrieve what I need then transfer those to the new machine. But there must be a way to allow a new computer to fully access Time Capsule backups, but curiously, I can't find it. I rather have my new computer have full access because I am selling the old laptop and so I wont be able to use it to access my backups any longer.
    Sorry for the long explanation, but I hope that gives someone all the facts required to both understand what I am saying and help me fix the problem.
    -Amir

    Right now it is just empty because I have unmounted and disconnected my Time Capsule. I'm trying a low-tech work around to see if this works, but much rather do it the "right way."
    What I am doing is this:
    (1) Use Migration Assistant to copy everything from the Time Capsule to the new machine (this is exactly what I was trying to avoid initially). Migration Assistant has been copying files for about 5 hours now (still not sure what is going to happen).
    (2) Create a full backup on Time Capsule with my MacBook Pro now that it has everything from the Time Capsule on it.
    (3) Do a fresh install of Snow Leopard.
    (4) Hopefully, have the fresh start on my machine I wanted, but still have access to at least one archived copy of my old computer and files/folders.
    Does this make sense? Basically, the new machine does not allow me to access the old backups. So I am handicapping the machine now by reverting to my old settings via Migration Assistant, will back that up, then start all over from scratch again but hopefully have the peace of mind that my files are not gone because I will at least have that one copy of all my old copies in a Time Capsule backup that the new machine can access.

Maybe you are looking for

  • Itunes credit card fraud

    Someone stole my debit card number and chareged $870 worth of itunes. I can not get any help from Apple or Itunes. My bank is doing what it can, but why can't Apple help? Any suggestions?

  • Tutorials for using javax.help package api's

    hi! i m woking on javax.help package for my project nowadays. i will be grateful if someone can guide me that where i can find sample codes and tutorials for using api's in this package. thanks. bye.

  • Order Confirmation user exit for storage location

    hi all while confirming order, no one should select any other storage location other than fix : 1003, user selects 1001, 1002, 1003. actual posting location is 1003.. Can i control this activity with the help of user exit ? if yes please suggest.

  • Aborted Calls cause Default script to be invoked

    Hey all, I have started to notice an issue recently. Our default script send callers to hunt groups - via a redirect to that hunt group trigger. So if anything goes wrong in the main script it will still get routed to an agent. However recently this

  • Possible to make a freeze frame in iMovie09?

    In Final Cut Pro there is an option to freeze any frame in your movie turning it to a still shot, which you can adjust the time it displays in the timeline. Does iMovie 09 have any sort of freeze frame feature? I've looked and looked but can't figure