TIMEFROMPARTS is not a recognized function in 2008 r2 mssql

I have three fields - starttime, duration (in hours), and endtime in mssql 2008 r2. Starttime and duration are entered in a form by endusers and I attempted to define trigger to insert/update endtime (as 1 minute less than the starttime+duration) use
TIMEFROMPARTS as below (just querying in Management studio) but failed!!!:
Select (DATEPART,Starttime),Duration, TIMEFROMPARTS(DATEPART(HOUR,starttime) + Duration -1,59,0,0,0) As EndTime from <tablename>
but it failed with the message:
Msg 195, Level 15, State 10, Line 1
'TIMEFROMPARTS' is not a recognized built-in function name.
where as this URL of msdn talks about this function:
https://msdn.microsoft.com/en-us/library/hh213398.aspx?f=255&MSPPError=-2147217396
Appreciate if there is a clear reason why the function doesn't work and there is a simple fix (simple means other than upgrading database..etc.) Otherwise, I will have to resort to convert to datetime from time (for starttime) , use DateAdd function to get
the new datetime and then get timepart for end time!!!
rmrrdesai
It is actually getting weird..even DATEFROMPARTS did not work either. My attempt to:
DATEFROMPARTS(YEAR(StartDate),DATEPART(hour,starttime)+Duration01,59) As endtime failed as well!!!
Similar error message..'DATEFROMPARTS' is not a recognized buil-in function name.

It is actually getting weird..even DATEFROMPARTS did not work either. My attempt to:
DATEFROMPARTS(YEAR(StartDate),DATEPART(hour,starttime)+Duration01,59) As endtime failed as well!!!
Similar error message..'DATEFROMPARTS' is not a recognized buil-in function name.
Hi RMRRDesai,
Like TIMEFROMPARTS function, the DATEFROMPARTS Function is also only available in SQL Server 2012 or higher version. Please check the available date and time functions in different versions of SQL Server from below blog.
Date and Time Data Types and Functions - SQL Server (2000, 2005, 2008, 2008 R2, 2012)
http://www.codeproject.com/Articles/566542/Date-and-Time-Data-Types-and-Functions-SQL-Server#40
Thanks,
Lydia Zhang
Lydia Zhang
TechNet Community Support

Similar Messages

  • SSMS 2012: Import XML File to SQL Table - 'value' is not a recognized built-in function name!!??

    Hi all,
    I have the following xml file (books1.xml):
    <bookstore>
    <book>
    <BookID>1</BookID>
    <title>Everyday Italian</title>
    <author>Giada De Laurentiis</author>
    <year>2005</year>
    <price>30.00</price>
    </book>
    <book>
    <BookID>2<BookID>
    <title>Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
    </book>
    <book>
    <BookID>3<BookID>
    <title>XQuery Kick Start</title>
    <author>James McGovern</author>
    <year>2003</year>
    <price>49.99</price>
    </book>
    <book>
    <BookID>4<BookID>
    <title>Learning XML</title>
    <author>Erik T. Ray</author>
    <year>2003</year>
    <price>39.95</price>
    </book>
    </bookstore>
    In my Microsoft SQL Server 2012 Management Studio, I executed the following SQL Query code:
    --XQuery w3schools example using books1.xml in C:\Temp folder
    ---SQL Query W3books Title
    ---9 March 2015
    USE XML_XQUERY
    GO
    CREATE TABLE W3Books(
    BookID INt Primary Key,
    Title VARCHAR(30));
    INSERT INTO W3Books (BookID, Title)
    SELECT x.book.query('BookID'), value('.', 'INT'),
    x.book.query('title'), value('.', 'VARCHAR(30)')
    FROM (
    SELECT CAST(x AS XML)
    FROM OPENROWSET(
    BULK 'C:\Temp\books1.xml',
    SINGLE_BLOB) AS T(x)
    ) AS T(x)
    CROSS APPLY x.nodes('W3Books/book') AS x(book);
    SELECT BookID, Title
    FROM W3Books;
    I got the following error messages:
    Msg 195, Level 15, State 10, Line 7
    'value' is not a recognized built-in function name.
    Msg 156, Level 15, State 1, Line 16
    Incorrect syntax near the keyword 'AS'.
    I don't know why I got the error of 'value' is not a recognized built-in function name. Please kindly help and tell me what is wrong in my code and how to correct the error.
    Thanks, Scott Chang
    P. S.
    (1) I mimicked the xml file and SQL Qeury code of Import XML File to SQL Table in
    http://pratchev.blogspot.com/2008/11/import-xml-file-to-sql-table.html. The xml file and the code of this sample worked in my SSMS 2012 program.
    (2) I am learning the "CAST" and "CROSS APPLY" in the Create Instances of XML Data of Microsoft MSDN - it is very abstract to me.

    Hi Stan210, Thanks for your nice response.
    I corrected my xml file as you pointed out.
    I made some changes in some code statements of my SQLQueryW3BookTitle.sql as you instructed:
    --XQuery w3schools example using books1.xml in C:\Temp folder
    ---SQL Query W3books Title
    ---10 March 2015
    USE XML_XQUERY
    GO
    CREATE TABLE W3Books(
    BookID INt Primary Key,
    Title VARCHAR(30));
    INSERT INTO W3Books (BookID, Title)
    SELECT x.book.value('/BookID[1]', 'INT'),
    x.book.value('/title[1]', 'VARCHAR(30)')
    FROM (
    SELECT CAST(x AS XML)
    FROM OPENROWSET(
    BULK 'C:\Temp\books1.xml',SINGLE_BLOB) AS T(x)
    ) AS T(x)
    CROSS APPLY x.nodes('bookstore/book') AS x(book);
    SELECT BookID, Title
    FROM W3Books;
    I executed my revised sql and I got the following Message and Results:
    Msg 515, Level 16, State 2, Line 6
    Cannot insert the value NULL into column 'BookID', table 'XML_XQUERY.dbo.W3Books'; column does not allow nulls. INSERT fails.
    The statement has been terminated.
    (0 row(s) affected)
    Results:
    BookID    Title
    I don't know why I just got the names of columns in Results and the "Cannot insert the value NULL into column 'BookID', table 'XML_XQUERY.dbo.W3Books'; column does not allow nulls, insert fails." in Messages.  Please kindly help, advise me
    how to correct the errors and respond again.
    Many Thanks again,
    Scott Chang

  • Error 'DAYOFWEEK' is not a recognized built-in function name.

    hi friend I used the following query with sql server 2008 to select group by records
    SELECT
    sum(ljoin) as lct,
    sum(rjoin) as rct,
    CONCAT(DATE_FORMAT(DATE_ADD(date, INTERVAL(1-DAYOFWEEK(date)) DAY),'%Y-%m-%e'), ' TO ',
    DATE_FORMAT(DATE_ADD(date, INTERVAL(7-DAYOFWEEK(date)) DAY),'%Y-%m-%e')) AS DateRange
    FROM Pairs_Details
    WHERE userid='jitu'
    GROUP BY YEARWEEK(date)
    it return the  following error 'DAYOFWEEK' is not a recognized built-in function name.
    But I can not get my desire result there are my following table, data and desire output which I want
    Pairs_Details table definition:
    CREATE TABLE [dbo].[Pairs_Details](
    [sno] [int] IDENTITY(1,1) NOT NULL,
    [userid] [nvarchar](50) NULL,
    [date] [datetime] NULL,
    [ljoin] [int] NULL,
    [rjoin] [int] NULL
    ) ON [PRIMARY]
    Example data:
    sno userid date ljoin rjoin
    1 jitu 2014-01-21 15:48:24.000 1 NULL
    2 jitu 2014-01-22 15:48:24.000 NULL 1
    3 tetu1234 2014-01-22 15:48:24.000 1 NULL
    4 jitu 2014-01-24 15:48:24.000 NULL 1
    5 saurbh123 2014-01-25 15:48:24.000 1 NULL
    6 jitu 2014-01-26 15:48:24.000 1 NULL
    7 tetu1234 2014-01-28 16:40:05.000 NULL 1
    8 jitu 2014-01-28 16:40:05.000 NULL 1
    Desired output: for perticular userid 'jitu'
    userid | ljoin | rjoin | DATERANGE |
    jitu | 2 | 2 | 2014-01-21 15:48:24.00 TO 2014-01-27 16:40:05.000 |
    please any can help me.
    thanks.
    Jitendra Kumar Sr. Software Developer at Ruvixo Technologies 7895253402

    Try below code..
    SET DATEFIRST 2;
    ;WITH CTE AS
    SELECT * , DATEPART(WW, [date]) AS week_num
    FROM pairs_details
    SELECT userid, SUM(ISNULL(ljoin,0)) as ljoin, SUM(ISNULL(rjoin,0)) as rjoin
    FROM CTE b
    GROUP BY userid, week_num
    still missing date_range concatenated field.. I will get back to it... Meanwhile you can use this..
    Please mark as answer, if this has helped you resolving the issue.
    Good Luck :) .. Visit www.sqlsaga.com for more t-sql code snippets and BI related how to articles.

  • 'SUBSTRING_INDEX' is not a recognized built-in function name.

    actually iam modifing the servlet code to connect with MSSQL.previously it was MYSQL.now compiling is ok.
    while running it shows error at the top of the linked page as...
    error
    [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]'SUBSTRING_INDEX' is not a recognized built-in function name.
    ->can any one give me the solution for this error.

    Don't use that function because it doesn't exist in SQL-Server.
    OR
    Change your SQL to use a function that does exist.
    OR
    Create a user defined function in SQL server that has that name.

  • [SQL Server]'TO_DATE' is not a recognized built-in function name

    Running 11g dg4msq and getting the error :
    SQL> select * from all_users@dg4msql;
    select * from all_users@dg4msql
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Oracle][ODBC SQL Server Driver][SQL Server]'TO_DATE' is not a recognized
    built-in function name. {10196,NativeErr = 195}

    Hi,
    This problem happened on Windows platforms after upgrading the RDBMS used to access the gateway from 10.2.0.3 to 10.2.0.4 patch 22.
    The solution is to install and apply Oracle Database 10.2.0.4 Patch 29 (Windows Bundle Patch 29) or later to the RDBMS that is running the query and connecting to the Gateway.
    This is detailed in the following note available on My Oracle Support -
    Query Using DG4MSQL Returns Error After Upgrade of RDBMS From 10.2.0.3 to 10.2.0.4 (Doc ID 1078940.1)
    Regards,
    Mike

  • Entourage 2008 not  being recognized as installed after migration to new iMac Mountain Lion.

    Hello Everyone!
    I;ve been browsing for answers to my problems for 2 days now. Office 2008 is not being recognized as installed on my machine. i have 2011 but i prefer Entourage as my defailt email client.
    What happens: when i try to access Entourage i get a getting started window asking me to either register my product or learn more. when i try installing the update 12.3.6 for Office 2008 it tells me it cannot be installed because the software componenet necessary for installation is not found on the disc. from this I gather the actual Office is not being recognized as installed.
    What I tried so far: I did all that was suggested on forums, such as checking to see if the MS office 2008 is in Applications, nothing was changed like the name of software or location of any of its components, tried getting the latest updates for the MS office 2008, tried installing on another user, none of these worked.
    I am still to try reinstalling but the disc i have is an upgrade from 2004 which will prob not work in this case, since anyway I understand that .dmg is not supported anymore.
    What can I do? anything that doesn't require me to use 2011, i do not like the Outlook in 2011. is there a way to activate my install of 2008 and use that? i really like Entourage, Outlook doesn't satisfy me.
    please help

    Reference your first post - I download and use dmg files, so either I'm lucky or they are supported.
    I would try the disk reinstall since at this point there doesn't seem to be many options.
    Do you have a backup? You could restore the Microsoft Office 2008 folder.

  • Feature can not be recognized

    It seems I am facing a problem with feature can not be recognized for leaving action (PA40)
    Leaving is supposed to have MSN 20 with program generated 1PAPA/FEAT000MSN20 but my client has different program generated which is $P00003U. How do I change it?

    what is generate feature TCODE? Is it se38 for running the above program? I execute it however I have a message says "When recognizing the predecessors, youmay not specify a feature because the reorganization with subsequent activation can not be performed for a subset"
    Edited by: Dian Santioso on Jan 24, 2008 11:59 AM
    Edited by: Dian Santioso on Jan 24, 2008 12:09 PM

  • Video Ipod 80G 5th generation not being recognized by computer or  itunes.

    My ipod is not being recognized by my computer or itunes at all. I bought a new cable and nothing happens as well. however when i connect it in my car it works fine. did any resolve this issue? I am not sure if its the new software that has the issue but i am almost certain it is.

    Many people are reporting problems with connecting there fifth-gen iPods after the update to iTunes 9. I had the same problem, and when I downgraded to iTunes 8, everything worked again.
    I tried cables, resetting, and all the other steps. My solution turned out to be iTunes 9 itself.
    My problem came from using a replacement hard drive-an adapter that allows me to retrofit my iPod with a Compact Flash card instead of a hard drive.
    The problem is NOT the adapter. This system functioned perfectly until iTunes 9, and when I switched back to iTunes 8, it worked again.
    Summary: I have a modded iPod, and it consistently works with iTunes 8, but not iTunes 9.
    Reason: Apple is sooooooooooo afraid a Palm Pre user will be able to use iTunes that they are breaking the sync code on purpose.
    Downgrading iTunes:
    1. find the download of iTunes 8 for your OS. (not posting links, as they may change)
    2. go into your iTunes 9, and export EVERY playlist to a text file. This is the only way to preserve your playlists.
    3. Uninstall iTunes 9 from you computer, install iTunes 8.
    4. Configure iTunes 8 to use your music folder (especially if you moved your music to a different location other than the default)
    5. Add your music to iTunes-this may take awhile.
    6. Import you text files and your playlists will return.
    7. Backup your iTunes 8 library files.
    Happily enjoy your modded iPod. Mac Users: Don't accidentally install iTunes 9 from an Apple Update.

  • My battery is not being recognized, tried the updates..

    So I've tried all of the software and battery updates, still getting the black x in the battery icon. I've also tried the battery from an identical (working) Macbook in my computer, still not being recognized. The battery itself is lighting up to full power, so what I'm wondering is...is it really my battery that needs to be replaced? Or could it be a different issue?
    I bought my Macbook in 2008, so people are telling me the battery is old and needs to be replaced, but what worries me is a different battery already failed, so I don't want to waste my money if the battery isn't the problem.

    Most common culprits include the cable. Try swapping it out for a different one.. or not having the most recent version of itunes. I once even solved this problem by shutting down the computer for 2 minutes. (the longer the better), with the ipad plugged in. starting it up... then itunes recognizes it, launches, and syncs.
    Apple has a troubleshooting assistant on this topic:
    http://www.apple.com/support/ipad/assistant/itunes/
    It will advise you to reboot. I recommend shutting down instead.
    --Sam
    P.S The ipad should charge when asleep and plugged into your Mac. The charging behavior is normal. There isn't enough power out the USB ports to charge the ipad while it is on on some older Macs and nearly all PCs.

  • URLs are not being recognized inside PDF

    URL links inside a PDF that I've created in InDesign CS5 are not being recognized.
    I have email and website URLs embedded inside a PDF that was created in InDesign. These links are being recognized and I can click on them in Chrome, Opera, IE or Safari on the Mac. Eg, hovering over the mailto or http URLs the cursor turns to a hand and the links are clickable. Firefox is the only browser that does not recognize ANY links in the PDF. The cursor doesn't change to a hand instead it just remains as the standard text insertion cursor. The links are not clickable.
    Firefox 26.0
    Adobe Reader plugin 11.0.4.63 (latest as of today)

    Current Firefox versions have enabled a built-in PDF Viewer that doesn't have all features that other PDF readers like the Adobe Reader have or may not function properly otherwise.
    You can change the action for Portable Document Format (PDF) from Preview in Firefox to use another application like the Adobe Reader or set to Always Ask in "Firefox > Options/Preferences > Applications".
    You can set the pdfjs.disabled pref to true on the <b>about:config</b> page to disable the build-in PDF viewer.
    *http://kb.mozillazine.org/about:config
    You can check the value of the plugin.disable_full_page_plugin_for_types pref on the about:config page and remove the application/pdf part if present or reset the pref to the default via the right-click context menu if you want to display PDF documents in Firefox with another application (i.e. not the built-in PDF Viewer).
    See also:
    *https://support.mozilla.org/kb/view-pdf-files-firefox-without-downloading-them
    *https://bugzilla.mozilla.org/buglist.cgi?component=PDF%20Viewer&product=Firefox&query_format=advanced&order=bug_id%20DESC&limit=300
    <i>Please do not comment in bug reports: https://bugzilla.mozilla.org/page.cgi?id=etiquette.html</i>

  • Group Chat feature in Office Communications Server 2007 R2 does not work in Windows Server 2008 R2 domains

       Hello to all, there are two confliting articles about this topic:
       1-
    http://technet.microsoft.com/en-us/library/upgrade-domain-controllers-to-windows-server-2008-r2(v=ws.10).aspx#BKMK_Whatsnew : this one says that it does not work "The Group Chat feature in Office Communications Server 2007 R2 does not work in Windows
    Server 2008 R2 domains". This article was updated in 2013.
       2-
    http://technet.microsoft.com/en-us/library/ee692314(office.13).aspx: this other article says that it will function "Office Communications Server 2007 R2 Group Chat will function in a Windows Server 2008 R2 forest". This article was updated in
    2010 and was refered by the first one.
       What is the correct support position for Group Chat feature in Office Communications Server 2007 R2 and Windows Server 2008 R2 domains?
       Regards, EEOC.

    Hi,
    I notice the following sentence in the link below “Office Communications Server 2007 R2, Group Chat will not function in a Windows Server 2008 R2 forest or when Group Chat member servers are joined to a Windows Server 2008 R2 domain.
    We know of an issue with changes in Windows 2008 R2 that requires a Group Chat Client and Group Chat Admin Tools hotfix. The Group Chat Client and Group Chat Admin Tools hotfixes are currently scheduled for mid-April 2010.”
    http://blogs.technet.com/b/nexthop/archive/2010/11/06/supportability-for-office-communications-server-2007-r2-and-windows-server-2008-r2.aspx
    So in my opinion, if you update to the latest version of Windows Server 2008 R2, OCS Server 2007 R2 and Group Chat Client, Group Chat Admin Tools to the latest version, it should work.
    However, the best method for you is make a lab to test the problem firstly.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • [ODBC Driver Manager] Driver does not support this function

    HI every body
    In Win Server 2008 R2 , I tried to retrieve data from my ODBC Driver
     by Report Builder , my connection test is successful , but after any retrieve data by SQL Statement I encounter with this Error :
    IM0001: [Microsoft] [ODBC Driver Manager] Driver does not support this function
    I use Win Server 2008 R2 , and my ODBC Driver installed on :
    %SystemRoot%\SysWOW64\odbcad32.exe
    Can anyone help me to solve this problem, its realy urgent for me ,
    PLEASE HELP ………………..

    ODBC Driver name is PMSDK (32 bit) and installed by Primavera software
    I use SQL Report Builder to connect the driver and try SQL Statement in it
    Report Builder may be executing an ODBC function to retrieve meta data, and that function is not supported by the PMSDK driver.  Are you using the latest version of the PMSDK driver?  You might try turning on ODBC tracing to find out the problem
    function. 
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Formula element ATRV could not be recognized

    Hi,
    Problem in SAP IP FOX Formula.
    I have to copy the data from one cube to other.Both are planning cubes.
    I have a customer master YL_AGG1 which has a Attribute YL_COMMU (Ref object of YN_COMMU).
    Based on other dimensions  I have to copy the data, where YL_COMMU is not equal to 'CAP'.
    This is my  formula which is giving error massage
    'Formula error: Formula element ATRV could not be recognized'
    DATA VAR_AGG1 TYPE  YL_AGG1.
    DATA L_FACTOR TYPE F.
    FOREACH VAR_AGG1  IN REFDATA.
      IF ATRV ('YL_COMMU', YL_AGG1) = 'CA' .
    { YL_WEIGHT, YLM05_C, VAR_AGG1  } =  { YL_WEIGHT, YLM04_C, VAR_AGG1 }
    ENDIF.
    ENDFOR.
    Thanks and regards,
    Deepak
    Edited by: DEEPAK SINGH on Sep 15, 2008 1:29 PM
    Edited by: DEEPAK SINGH on Sep 15, 2008 1:29 PM
    Edited by: DEEPAK SINGH on Sep 15, 2008 1:29 PM

    Hi,
    You can try the following line code:
    IF ATRV ('YL_COMMU', 'YL_AGG1') = 'CA'
    AleX

  • Error -11040 Driver does not support this function- Informix SE db

    Hello,
      Weu2019re getting an error -11040 "Driver does not support this function" when trying to connect to an ODBC data source to an InformixSE database. This is with Crystal 2010 and 2008 on a Windows XP sp2 box. Weu2019re trying to use the ODBC(RDO) choice for a new connection.
      The Informix ODBC driver has been loaded. We tried 3 versions, the 2.40 and 3.70(latest) ones from IBM, and one that I believe came with Crystal (CR xxxx). I tried turning on the ODBC trace file, but it didnu2019t write anything to the log. We are supplying the same log in credentials as with Excel.
       The Informix database we use is Informix SE (Standard Engine) v5.10 on separate machine running Unix (Aix) with the Informix-Net daemon running to handle odbc connectivity. We are able to connect from Excel to the Informix database.
      I donu2019t know what ODBC function Crystal may be expecting from the driver that it doesnu2019t seem to support and how to tell Crystal to not need it.
    Thanks,
    Mike

    Hi Mike,
    According to the Platforms for DB support we only support these Informix data sources:
    IDS (Informix Dynamic Server)     11.50       32 bit       64 bit        Linux               AIX                   Solaris
    IDS          IDS Client 11.5                                     Direct     Direct     Not Supported     Not Supported     Not Supported
    ODBC      IBM Informix ODBC SDK 3.50             Direct     Direct     Direct             Direct             Direct
    ODBC      DataDirect ODBC 6.0 SP2 (10)      Direct     Direct     Direct             Direct             Direct
    You may want to try the Data Direct 6.x drivers as a test.
    CR in the .NET IDE is running under 32 bit mode so make sure you are using the 32 bit Client.
    Don

  • Windows 8.1 Clients cant register record in DNS in forest functional level 2008 environment (DNS Client Events 8018)

    Hello,
    I have two DC,:
    first Windows Server 2008, second Windows Server 2012 R2,
    AD works in forest functional level 2008
    Workstations working in Windows 8.1 OS cant register to DNS with warning:
    The system failed to register host (A or AAAA) resource records (RRs) for network adapter
    with settings:
               Adapter Name : ...................................................
               Host Name : ...................................
               Primary Domain Suffix : ....................................
               DNS server list :
               Sent update to server : <?>
               IP Address(es) :
    The reason the system could not register these RRs was because the DNS server contacted refused the update request. The reasons for this might be (a) you are not allowed to update the specified DNS domain name, or (b) because the DNS server authoritative for
    this name does not support the DNS dynamic update protocol.
    To register the DNS host (A or AAAA) resource records using the specific DNS domain name and IP addresses for this adapter, contact your DNS server or network systems administrator.

    Hi,
    Functional levels determine the available Active Directory Domain Services (AD DS) domain or forest capabilities. They also determine which Windows Server operating systems you can run on domain controllers in the domain or forest. However, functional levels
    do not affect which operating systems you can run on workstations and member servers that are joined to the domain or forest. Set the domain and forest functional levels to the highest value that the environment can support, in order to use as many AD DS features
    as possible.
    You may reference SenneVL’s suggestion, and use ipconfig /registerdns
    on the workstation to confirm that if the DNS record can be registered.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Issue with AP Payments

    We are attempting to pay vendor 26650 the following invoices in SAP as check documents.  However, when we run the paycycle nothing comes up as being eligible for payment.  I thought it might have something to do with the edits being turned backed on

  • How do I have multiple accounts on the same computer

    how do I have multiple accounts on the same computer? The idea of ", hold down the option (on a Mac)/ shift (on a PC) key each time you start iTunes" does not seem to work for me. Thanks.

  • Mac won't do anything after sec update 2008-008

    My iMac gives only gray screen with apple logo and below, turning thing (circuling daches) I have tried: - safe mode - single user mode and gave the command fsck -fy (mac HD seems to be ok) - it won't start from cd (cd doesn't even apear with the opt

  • Rearrange apps on iphone 3 from pc?

    Hi, When I recently broke my hand, I noticed thru my clumsiness I had rearranged 7 pages of apps on iphone 3.  Can I rearrange these from my pc as I have more control with it?  I tried to but it only shows 1 page of apps, not 7.  And it looks "faded"

  • Dreamweaver Freeze fix

      I have had Dreamweaver cs6 lock up for 10-15 seconds every time I go to another program window and back. Tried to impliment the fix here: http://helpx.adobe.com/dreamweaver/kb/hang-opening-document-dreamweaver-cs5.html but when I go to user/usernam