'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.

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

  • [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

  • 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.

  • SQL ERROR of "CONCAT is not a recognized built-in function name in SQL"

    Normally the function of "CONCAT( )" is used in SQL to combine two strings together. 
    In SAP B1, however, you get the error message in the Subject line above when you try to use it and there is not much help there as to what to do.  The solution is so simple you are going to fall over. I have had so many questions about this one function and several folks have asked me to post this, as they spent hours going through various permutations with no success. 
    If you have had experience with some other SQL than what is in SAP B1, the following puts the city name and state name from the CRD1 table into one string in the final results:
    <b>CONCAT(T0.City, '  ', T0.State) AS ‘Combined City and State’,</b>
    BUT in SAP B1, the above will error out...so what do you do?
    Get down to the real basics and use the plus sign.  Go ahead, try it:
    <b>(T0.City + ' ' + T0.State) AS 'Combined City and State',</b>
    Note that the single quotation marks have a space between them to give you space between the city name and the state name...you could put a comma and a space between the single quotation marks, if you want to.
    Can you believe what a simple solution that is? I have pages full of this stuff from where the SQL gives you a message and no resolution...
    OK - Huy, Krisha, John, and Charles - I have no idea if it will help anyone or not, but I promised you I would post...so there it is...pass it on to your compatriots!
    Thanks all - Zal

    OK Suda - maybe I was not too clear...sorry.  Now to your points...
    WHY:
    "CONCAT ( )" is a very common operation command in other SQL I have used and studied. Most folks having experience in SQL would think this is a "standard" operative.  When folks are new to SAP B1 and they try to use "CONCAT ( )", they get the error message as shown in the Subject line.
    WHERE YOU GET MESSAGE:
    You get the error message in the Query Window where you type in/change SQL  and after you have executed the query.  Error messages appear at the very bottom of the Query Window in red.  The words in the Subject line are part of an exact copy from that line.
    APPLYING THE QUERY:
    When I hold instruction on SQL, I give exercises for folks to do.  This was nothing more than part of an exercise to demonstrate how one can combine two fields in one column in a query and how it comes out on a report (we combine other fields in the same "address" exercise to create "labels" using the Print Layout Designer).  I know, nothing very earth shattering, but each training script I create has ONE specific objective since the scripts I write are for users and some might have experience from other packages.
    WITH OR WITHOUT PARENTHESIS:
    Thanks - yes, it also works without parenthesis.
    But when someone is new to SQL, the lengthy "one-liner" created by the SAP B1 Query Generator can be a bit difficult to read so I have developed a writing and format standard to make reading the SQL easier by breaking it up. The format standard also makes it easier to draw attention to one particular line on an overhead and for the student to write comments or notes on the page.  But one writing standard is that the students use parenthesis after a particular command [for example, SUM( ), MIN ( ), MAX( ), AVG( ), etc].  It might be seen as useless for experienced persons, but I have found that folks can "get it" better when you give them small rules like this one.  If you want to see a bit more of that standard, there is another item (titled Reconciliation by a person named Shwu?) somewhere on the forum where I laid out an entire SQL for pre-upgrade reconciliation.  I tend to document A LOT since I am writing SQL for several clients and sometimes refer back to old ones.  The standard might be funky, and maybe someone else has a better way, but heck - it works for me!
    Thanks for pointing out where I was a bit confusing in the original message.  I don't know how these Reward Points work, but consider yourself getting a "Z" point for those "S" points in your message.
    Take care - Zal

  • TRY_CAST is not a recognised built in function name

    see image: http://i.imgur.com/rf1t5FN.png
    Intellisense is not recognising try cast as a function - how can I resolve?

    Thanks it appears they are aware of the bug but no plans to fix it
    Hi ,
    For submitting a feedback to Microsoft such issues, I would recommend to submit it to the Microsoft Connect at this link https://connect.microsoft.com/SQLServer/Feedback. This connect site will serve as a connecting point between you and Microsoft, and ultimately
    the large community for you and Microsoft to interact with. Your feedback enables Microsoft to offer the best software and deliver superior services, meanwhile you can learn more about and contribute to the exciting projects on Microsoft Connect.
    Thanks,
    Sofiya Li
    TechNet Community Support

  • DNS not querying/ recognizing/ resolving internal domain name using nslookup

    I've setup a virtual lab for practice purpose on VMware 8 workstation.
    I have already asked this question in vm community but still got no answers hence asking it here.
    In my vmware workstation 8, for practice lab purpose my setup is as follows:-
    1] Win 2k8R2 Enetrprise edi.vm as my DC with DNS & DHCP configured and working perfect. DNS is getting resolved internally via NSLOOKUP. Server has manual ip assigned...192.168.1.xx series.
    2] Win xp vm as my Client and getting dhcp lease address from the above DC and also the DNS is getting resolved internally via NSLOOKUP.
    Now that these two vms are communicating perfectly with each other, I thought about connecting them to my physical internet.
    So, in the Virtual network editor, I added a Host-only type network named
    VMnet 04 with Use local dhcp service checkbook Disabled and on each of these vms, in network adapter settings, selected specific virtual network and pointed it to
    VMnet 04 in both vms.
    Now, in both the vms, an additional network connection got added and hence was successfully able to browse internet from both vms.
    Now the REAL problem:--
    After the above configuration, when I do NSLOOKUP on the DC, the DNS doesnt resolves external sites on the internet.
    I havent specified any kind of conditional forwarding etc.., its a simple DNS setup.
    I want it to resolve to the internal domain and also be connected to the internet .
    What setting do I need to do in DNS or in VM network?
    I tried almost all types of settings in vm virtual network editor by specifying dns manually and so on but none worked.

    Sorry my bad.... slight mistake in my question...Here is my corercted query--
    After successfully connecting to the internet, when I do NSLOOKUP on the DC, the DNS doesnt resolve my internal domain/site but instead resolves external sites on the internet.
    My computer FQDN is nri.wwe.com
    Domain dns name is wwe.com
    The above should get resolve internally but it searches on the internet.
    This is how it should work
    & it works perfect when I disable the other NAT network adapter (i.e. disable internet connectivity on my virtual DC)
    C:\>nslookup nri.wwe.com
    Server:  nri.wwe.com
    Address:  192.168.1.11
    Name:    nri.wwe.com
    Address:  192.168.1.11
    But when I again enable internet connectivity, this it what happens.
    C:\nslookup www.wwe.com
    DNS request timed out.
        timeout was 2 seconds.
    Server:  UnKnown
    Address:  192.168.12.2
    DNS request timed out.
        timeout was 2 seconds.
    Non-authoritative answer:
    DNS request timed out.
        timeout was 2 seconds.
    Name:    www.wwe.com.nsatc.net
    Address:  64.152.0.124
    Aliases:  www.wwe.com
    And when I again nslookup, this is what I get,
    C:\>nslookup www.wwe.com
    DNS request timed out.
        timeout was 2 seconds.
    Server:  UnKnown
    Address:  192.168.12.2
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    *** Request to UnKnown timed-out
    Now this 192.168.12.2 is VM assigned DNS via VM Natting with its own DHCP. If we do it manually, none of the virtual machines can connect to the internet. So I cannot fiddle with it anymore as I have already that as well.

  • 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

  • Ranking query Required ( as not in oracle built in rank functions )

    Hai I have facing some kind of problem with Ranking using sql, i want different ranking as not in oracle built in functions ,
    Please help me
    for Example, i am showing the sample data what i required Exactly
    if any student obtains the same marks rank should be bottom rank of the students who got same rank which should cummulate top students rank
    Ranking Procedure - 1
    =========================
    sno Student Marks Rank
    =========================
    1 x00013 50 2
    2 x00021 50 2
    3 x00012 49 5
    4 x00001 49 5
    5 x00002 49 5
    6 x00033 48 10
    7 x00034 48 10
    8 x00015 48 10
    9 x00088 48 10
    10 x00051 48 10
    11 x00044 47 11
    12 x00041 48 12
    =======================
    Ranking Procedure - 2
    =========================
    sno Student Marks Rank
    =========================
    1 x00013 50 1
    2 x00021 50 1
    3 x00012 49 3
    4 x00001 49 3
    5 x00002 49 3
    6 x00033 48 6
    7 x00034 48 6
    8 x00015 48 6
    9 x00088 48 6
    10 x00051 48 6
    11 x00044 47 7
    12 x00041 48 8
    =======================
    regards
    Mahesh

    Why are you excluding Oracle built in functions? The results of "Ranking Procedure 2" would appear to just be the result of
    SELECT sno, student, marks, RANK() OVER (ORDER BY marks DESC) rnk
      FROM your_tablei.e.
      1  with x as (
      2  select 1 sno, 13 student, 50 marks from dual
      3  union all
      4  select 2, 21, 50 from dual
      5  union all
      6  select 3, 12, 49 from dual
      7  )
      8  select sno, student, marks, rank() over (order by marks desc) rnk
      9*   from x
    SCOTT @ jcave102 Local> /
           SNO    STUDENT      MARKS        RNK
             1         13         50          1
             2         21         50          1
             3         12         49          3I would probably write a custom analytic function to get the results of your first ranking procedure. Though I imagine you could get the same results in pure SQL, a well-named custom aggregate function would seem to be easier to understand (though the pure SQL solution may well be somewhat more efficient).
    Justin

  • DB built-in function

    Happy Friday everyone,
    I am newbie in Oracle and I don't really understand Oracle DB built-in function.
    I type below sql in sqlplus:
    select weeks_look_behind from dual;
    and I get result
    WEEKS_LOOK_BEHIND
    200
    Where is result from? Is WEEKS_LOOK_BEHIND same like TIME_DATE? Are they DB system built-in functions?
    Many thanks!

    I am newbie in Oracle and I don't really understand Oracle DB built-in functionWEEKS_LOOK_BEHIND is not an Oracle built-in function. So it is something written by a developer on your database. You can find out what it does by running this query
    select text from user_source
    where name = 'WEEKS_LOOK_BEHIND'
    order by line
    /I'm presuming that the object is in your current schema. If it isn't you will need to track it down by
    select owner, object_type from all_objects
    where object_name = 'WEEKS_LOOK_BEHIND'
    /Cheers, APC
    blog: http://radiofreetooting.blogspot.com

  • 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>

  • The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • 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 iPhone 5c is not being recognized by my mac except to charge it. I'm up to date on all updates and don't know what else to do. I have restarted several times. I have even tried to update my iPhoto and I can't even do that with iPhoto 9.0, but can't.

    My Iphone 5c is not being recognized by my Mac computer. I have done all of the upates, restarted several times and I'm not sure what else to do. I have searched and searched and searched and have come up with nothing. Also, my Iphoto can not be updated. I'm still using version 8. something, and it won't update without this update and that update. It needs 9.0 but I can't find that download anywhere. The only one that I can find is 9.1. That won't update. Is there anything that I can do, or should I just bite it and take it to apple to get looked at?

    Does iTunes not see the phone?
    If not, make sure you're running the current version of iTunes.
    If you are running the current version and it still doesn't recognize it, see this: http://support.apple.com/kb/TS1591?viewlocale=en_US&locale=en_US
    As for iPhoto, you will have to purchase a newer version. It's not a free upgrade. Or, you can use Image Capture, which is built into OS X, to import the photos.

  • List of built-in Functions in SAP system

    Hi,
    I am trying to find the complete list of built-in function available in SAP system. I searched in SAP help but could not find a comprehensive list at all. I am wondering if anyone can help me locate the list.
    Thank you in advance,
    Sunny

    Hi Sunny,
    in my system are already 77.197 transaction codes defined. OK, some are customer development, but on the other hand we are fare away from having all modules installed.
    I'm not sure, if you are looking for all transactions, all function modules, all BAPIs, all interfaces...
    ...but be sure, no one can EVER go through a whole list.
    You have to restrict your search: to a specific topic (e.g. only material master), specific technics (e.g. only IDOCs) - then you can successfully browse through the possibilities.
    Regards,
    Christian

Maybe you are looking for