Trouble with SQL datetime format

I have written a VI to import a CSV file into a SQL data table but I
cannot get it to work when using a table with "datetime" data
format.  It will import into a new table with undefined data
formats as "varchar" format but no luck when going into a table with the "datetime" data
format.   I need the datetime format for date/time queries later.
I have attached a zip file of my VI and the CSV file.  Is there a problem with my CSV format or I am I doing
something else wrong here?
Please help.
Thanks,
Greg
Attachments:
SQL issue.zip ‏54 KB

Greg
I have just tried to insert your data into a SQL Server (MSDE) database.
I found that the INSERT data didn't work. The TRUE for Create Table didn't seem to do any thing. So I created a table using labview like this
And this is its design.
I then run the vi again and it starts to work with no issues. So it looks like the Create Table?=TRUE for the INSERT doesn't seem to work on SQL Server. It looks like you need to create the table first.
Here is your data in the database
Let me know what you think
David
Message Edited by David Crawford on 04-28-2006 11:17 AM
Attachments:
Your Data.jpg ‏32 KB
Create Table.jpg ‏20 KB
Table Design.jpg ‏15 KB

Similar Messages

  • Trouble with a new format

    OK heres the skinny.
    I have several sytems and I am having trouble with one in particular. I was running this KT4V with a barton 2500+ and 1 gig of 2100 DDR. I couldnt put 1 gig of 3200 DDR in because of board limitations. I also has a 170o+ "b" chip that I had order a while back and was using on an outdated MSI boad and was getting mixed results at best.  So I decided to upgrade al my stuff.  I bought an Abit nfs-7 for th ebarton and a gig of 3200 and put the 1700+ in the KT4V. And thats where the trouble started.
    It starts at the reformt. It takes literally 5 hrs. to reformat a 30 gig harddrive.  and it took about 1.5 hrs. to complete the windows install. At start up, (it will start up) but it takes about 15 minutes to get to desktop and the pc runs VERY sluggish.
    I stried the quick format and it was quick but it is still very sluggish when in desktop.
    The only thing different is the cpu.   When I was using the 2500+ this system was fast and stable for over a year. Any suggestions and what could be causing this thing to be soooooooooooooooodamn slow?
    The system is:
    t-bred 1700+ 'B'
    KT4V-L m/b
    1gig 2100 DDR RAM
    Maxtor 7200 30 gig HDD
    Sparkle 300 watt PS
    GF 5600 GPU
    HELP!

    Reading that list of parts you are trying to use, I see one item that may cause major problems. The sparkle 300W PSU, it may not be able to handle the needs of the system with that FX5600.
    As for the slowness, the IDE cable could cause this. Ensure the blue end is hooked to the board, and the hard drive is hooked to the black end, and not to the gray plug in the middle.

  • Trouble with SQL Expressions

    Hello everyone,
    I'm having trouble with this SQL expression that works in 8.5, and XI R2 runtime and designer, but I cannot edit the expression.  As soon as I open the SQL Expression and click the X-2 check button, the error following
    SQL Expression I'm trying to run:
    (Select Distinct b1.CandEmploymentType
        from ceistaffing a1
        inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where a1.Staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID"
        and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    The Errror I Receive After Clicking the X-2 button:
    Crystal Reports
    Error in compiling SQL Expression :
    Failed to retrieve data from the database.
    Details: ADO Error Code: 0x
    Source: SalesLogix OLE DB Provider
    Description: The multi-part identifier "CEIHRPROJECTEDACTUAL.STAFFINGCHAINID" could not be bound.
    Native Error:  [Database Vendor Code: 181797304 ].
    OK  
    This is the SQL statement passed to the database:
    SELECT (Select Distinct b1.CandEmploymentType
    from ceistaffing a1
    inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where a1.Staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID"
    and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    If I reverse the order of the where clause as follows, I do not get the error
    (Select Distinct b1.CandEmploymentType
    from ceistaffing a1
    inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where CEIHRPROJECTEDACTUAL."STAFFINGCHAINID" = a1.Staffingchainid
    and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    This is the working SQL statement passed to the database.
    SELECT (Select Distinct b1.CandEmploymentType
    from ceistaffing a1
    inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
    Where CEIHRPROJECTEDACTUAL."STAFFINGCHAINID" = a1.Staffingchainid
    and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
    FROM   "sysdba"."CEIHRPROJECTEDACTUAL" "CEIHRPROJECTEDACTUAL"
    I figured I would just reverse the where clause statements, but then I came to this one that I couldn't get to work:
    (Select case when tmp.restartcount = 0 then 'F' else 'T' end from
    (Select Count(b.restart) as restartcount from ceistaffing a inner join ceihrprojectedactual b on a.staffingchainid = b.staffingchainid
    where a.candcontactid = (Select distinct candcontactid from ceistaffing a2 where a2.staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID")
    and b.restart = 'T'
    and a.createdate = (Select min(a1.createdate) from ceistaffing a1
                   where a1.createdate > (Select max(a3.createdate)
                                  from ceistaffing a3
                                  where a3.staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID")
                   and a1.candcontactid = a.candcontactid)) as tmp )
    I've burned an entire day trying to find some solution.  Are there any patches out there that will fix this?
    I'm running Crystal Report XI Release 2 SP2 - Version 11.5.8.826
    Thank you, ...Rob

    Okay, to simplify the illustration of the problem Iu2019m facing, Iu2019ve created a bare bones example as described below:
    I've created a report that returns all contacts from our "CONTACT" table.  On the report, I've created a SQL expression to return a count of all contacts with the similar last name, as shown below:
    (Select count(a1.ContactID) from CONTACT a1 where a1.LASTNAME = "CONTACT"."LASTNAME")
    When I try to save the SQL expression,  I get this error:
    Crystal Reports
    Error in compiling SQL Expression :
    Failed to retrieve data from the database.
    Details: ADO Error Code: 0x
    Source: SalesLogix OLE DB Provider
    Description: The multi-part identifier "CONTACT.LASTNAME" could not be bound.
    Native Error:  [Database Vendor Code: 205193720 ].
    OK  
    This SQL expression works fine in CRW 8.5, but no luck in XI R2 SP4 - As mentioned above in the thread, this seems to be an issue solely with how XI R2 is parsing the SQL Expression.  If I remove the "A1" alias from my expression all is good, but that will not work for some of the more advanced SQL expressions I have that are using joins and sub queries.
    What will it take to get this recognized as an issue worthy of a hot fix?  I'm at a stand-still here, facing the unfortunate possibility of having to re-architect many of my reports.  Please help.
    Thank you, ...Rob
    Edited by: Rob Bartram on Aug 6, 2008 3:45 PM

  • Trouble with SQL Anywhere 16

    We are having an issue with SQL Anywhere 16 and were wondering if there is a patch/fix or something that we need to look elsewhere. Our tester is being kicked out of out Sybase application whenever doing certain types of queries and as a result the database is being shutdown. We then have to go back into Sybase 16 and restart the database. We do not recall having this problem with SQL Anywhere 11.5. We have just recently upgraded to SQL Anywhere 16.

    Hi Lawrence,
    I think there's some confusion from both groups on this question. There was never a SQL Anywhere 11.5 version - we had SQL Anywhere 11.0.0, and SQL Anywhere 11.0.1. There was an ASE 11.5 and ASE 16.0 release though, so it is confusing to know which product you are inquiring about based on the version.
    Please provide some further details about which product you are using, the method in which you're using to start your database, and the connection strings that you're using. Hopefully with some more specific database configuration information, we can help you figure out which database product you're looking for additional help on and provide some suggestions.
    Thanks,
    Jeff Albion
    SAP Active Global Support

  • HUGE Troubles with xServe RAID formatted 10.4 and using it with SLS 10.6

    Hi All,
    We met today a huge trouble using an Apple xServe RAID (formatted HFS+ with a Mac OS 10.4 Server PowerPC G5).
    This RAID has been plugged with a new xServe Intel Xeon (Model xServe 3.1), MacOS X 10.6.2, Apple FiberChannel card 4 GB, the link is at 2 GB.
    There is also an Infortrend RAID FiberChannel 4 GB Fiber to SATA RAID attached to this new Intel Xeon server : this RAID drive mounts correctly, no troubles.
    BUT the "old" xServe RAID is not able to mount at all while plugged with this new Intel Xeon, DiskUtility claims the volume needs repair !!! We try a repair = failed !!!
    The xServe RAID has been formated under 10.4.6, HFS+ Journaled.
    The Infortrend has been formated under 10.6.2, HFS+
    Does anyone met a such case ??? We tried using SFP to SFP Copper cable or Optical Fiber + SFP/LC Transceiver = same results
    Many thanks a lot for your opinion !!!
    Regards.

    What if you connect your "old" xServe RAID to a non SLS server if you have one available? Preferably one running 10.4.x server to match your HFS format. If the data on the old RAID is so critical that you can't afford to lose it, you could always pickup a used PPC w/ a fibre channel card and install 10.4 server on it just so you can transfer the data. Curious to see what you end up doing.

  • Trouble with SQL loader

    Hello there,
    I am trying to load some data to a temp table for normalization but I am getting errors and nothing loads.
    My table is as below
    CREATE TABLE CA(
    OLD_SYSTEM_ID   VARCHAR2(25),
    OLD_DESCRIPTION VARCHAR2(35),
    ORDER_DATE      DATE,
    SHIP_DATE       DATE,
    QUANTITY        NUMBER);My Control file is like this
    LOAD DATA
    INFILE Ca.fwf
    BADFILE Ca.bad
    INTO TABLE CA
    old_system_id    POSITION (1:19) VARCHAR2,
    old_description  POSITION (20:27) VARCHAR2,
    order_date       POSITION (28:35) DATE,
    ship_date        POSITION (36:43) DATE,
    quantity         POSITION (44:47)
    )And my data is like this:
    CA-91003-KTS:2452-10000218619930205199303021
    CA-91003-KTS:2452-2000009171993020519930302100
    CA-91003-KTS:2452-3000009261993020519930302500
    CA-91003-KTS:2452-40000094619930205199303025
    CA-91003-KTS:2477-10000218619930319199304141
    CA-91003-KTS:2477-2000009171993031919930414100
    CA-91003-KTS:2477-3000009261993031919930414500
    CA-91003-KTS:2477-40000094619930319199304145
    CA-91003-KTS:2497-10000218619930519199306141I get this error:
    SQL*Loader: Release 9.2.0.1.0 - Production on Tue Oct 3 10:16:00 2006
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    SQL*Loader-350: Syntax error at line 6.
    Expecting valid column specification, "," or ")", found "VARCHAR2".
    old_system_id    POSITION (1:19) VARCHAR2,Any ideas why? this is happening on 8 different loads although they are all similar, is it to do with VARCHAR2 and commas?
    Regards
    Mike

    What happens when you try to load without any date mask? Does it get rejected? May be you should request your upstream system to send the date values in similar format?.
    If there are going to be only two formats i.e.,DD-MON-YY and DD/MM/YY then you can use decode function. something like below
      "decode(instr(:order_date,'-'),0,to_date(:order_date,'DD/MM/YY'),to_date(:order_date,'DD-MON-YY'))"Post the code which you tried. I dont have acces to database at home so the above code snippet is not tested.

  • Trouble with sql

    hi there
    i have connected my java application to a ms acess
    database succsssfully but when i include sql commands
    in the application it brings errors during compilation
    it points to the commands
    i imported java.sql;
    but it seams the compiler still does not recorgnise the
    commands.
    what could be the problem, please help.

    but when i include sql commands
    in the application it brings errors during
    compilation
    it points to the commandsIf you mean with "include sql command" putting a SQL command directly into the code, this doesn't work (at least not without a special pre-compiler)
    Post your code and maybe we can help you.
    Thomas

  • Trouble with SQL Statements

    Hello all that can help,
    i am programming in Ready to Program to connect to a VideoShop database using SQL statements.
    I am having trouble when using single and double inverted commas. eg vs.updateRentTable ("DELETE FROM RentTable WHERE CustId=);
    but instead of specifiying the CustId i want to make it a variable id so that i can delete any name i want according to their ID.
    also i am wondering if it is possible to write data from a database into a text file? is it possible to use Printwriter?
    Looking forward to your help,
    Manuking16

    Hi Manuking_16,
    Your question should be posted on a sql forum, not on a JDBC forum. Anyway. Just looking for answers, right?
    1) If your datatype is INT, you do not use either quotes " or single quotes in your SQL statement
    DELETE FROM RentTable WHERE CustId= 12345.
    To build the SQL String in JAVA just write:
    {code}String sqlStatement = "DELETE FROM RentTable WHERE CustId = " + custID; // custID will be casted to String.{code}
    2) Use preparedStatement
    {code}PreparedStatement pStm = conn.prepareStatement(�DELETE FROM RentTable WHERE CustId = ?");
    pStm.setInt(1, customerID);
    int numberOfDeletedLines = pStm.execute();3) If you want to enter the real name to do the deletion
    DELETE FROM RentTable WHERE CustId IN (select custID FROM Customer WHERE name = "joe bob johnson")
        To build the SQL String in JAVA just write: String sqlStatement = "DELETE FROM RentTable WHERE CustId IN (select custID FROM Customer WHERE name = '" + sCustomerName + "' )"; // just copy & pasteHope I got your question right.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Trouble with SQL in JSTL

    I'm trying to learn to use the JSTL, but it isn't going so well. Using scriptlets, I wrote this JSP that works just fine:
    <HTML>
         <HEAD>
              <TITLE> <%= request.getParameter("txtTitle") %> </TITLE>
              <%@ page import="java.sql.*, java.util.*" %>
              <%
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection conn = DriverManager.getConnection("jdbc:odbc:RDM_CURRENT_11", "name", "pword");
                   Statement getResults = conn.createStatement();
                   ResultSet rs = getResults.executeQuery(request.getParameter("txtQuery"));
                   ResultSetMetaData rsmd = rs.getMetaData();
              %>
         </HEAD>
         <BODY>
              <H1><%= request.getParameter("txtTitle") %></H1>
              <TABLE BORDER="1">
                   <%
                        int count = 0;
                        while (rs.next())
                   %>
                             <TR>
                                  <%
                                       for (int i = 1; i <= rsmd.getColumnCount(); i++)
                                  %>
                                            <TD>
                                                 <%= rs.getString(i) %>
                                            </TD>
                                  <%
                                       count++;
                                  %>
                             </TR>
                   <%     } %>
                   </TABLE>
                   <P> Records returned: <%= count %> </P>
         </BODY>
    </HTML>I tried to translate most of this into JSTL as follows:
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
    <HTML>
         <HEAD>
              <TITLE> <c:out value="${param.txtTitle}"/> </TITLE>
         </HEAD>
         <BODY>
              <sql:setDataSource url="jdbc:odbc:RDM_CURRENT_11" driver="sun.jdbc.odbc.JdbcOdbcDriver" user="name" password="pword" var="RDM"/>
              <sql:query var="dataSet" dataSource="RDM">
                   <c:out value="${param.txtQuery}"/>
              </sql:query>
              <H1><c:out value="${param.txtTitle}"/></H1>
              <TABLE BORDER="1">
                   <c:forEach var="row" items="${dataSet.rows}">
                        <TR>
                             <c:forEach var="col" items="${row}">
                                  <TD>
                                       <c:out value="${col.value}"/>
                                  </TD>
                             </c:forEach>
                        </TR>
                   </c:forEach>
              </TABLE>
         </BODY>
    </HTML>Now, I get a nasty error message from Tomcat saying:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Unable to get connection, DataSource invalid: "java.sql.SQLException: No suitable driver"
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:845)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:778)
         org.apache.jsp.queryDisplay2_jsp._jspService(org.apache.jsp.queryDisplay2_jsp:97)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:99)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:325)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: No suitable driver"
         org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:276)
         org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:159)
         org.apache.taglibs.standard.tag.el.sql.QueryTag.doStartTag(QueryTag.java:85)
         org.apache.jsp.queryDisplay2_jsp._jspx_meth_sql_query_0(org.apache.jsp.queryDisplay2_jsp:152)
         org.apache.jsp.queryDisplay2_jsp._jspService(org.apache.jsp.queryDisplay2_jsp:77)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:99)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:325)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.4 logs.
    Apache Tomcat/5.5.4I know my OBDC data source must be set up correctly because the scriptlet version works, but the JSTL version doesn't. I'm sure this is some easy problem that I am missing because I don't know JSTL well at all. Any help is appreciated.

    If you don't provide a "var" attribute to export to, JSTL keeps track of it for you in the standard pageContext attribute "javax.servlet.jsp.jstl.sql.dataSource"
    The query tag obviously found the datasource there.
    Just spotted what I think might be your original problem:
    You need ${  } signs around the datasource variable in the query tag.
    ie
    <sql:setDataSource url="jdbc:odbc:RDM_CURRENT_11" driver="sun.jdbc.odbc.JdbcOdbcDriver" user="name" password="pword" var="RDM"/>
    <sql:query var="dataSet" dataSource="${RDM}">Cheers,
    evnafets

  • Trouble with SQL Query Tool on Leopard

    I have been following the lessons in Ben Forta's book Adobe
    ColdFusion 8 Getting Started, and have installed the SQL query tool
    in my Mac and have installed the sql folder in
    http://localhost:8501/db/ows/sql/index.cfm
    When I try to open the file in the browser, I get a 404 error: File
    not found: /db/ows/sql/index.cfm
    Have tried rebooting the computer and get the same result.
    What's going on?
    TIA

    I have copied the full code for the error message below.
    Paul D
    404
    File not found: /db/ows/sql/index.cfm
    coldfusion.runtime.TemplateNotFoundException: File not found:
    /db/ows/sql/index.cfm
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:89)
    at
    coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:175)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
    at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
    at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

  • Trouble with sql dates getting Monday of this week

    Hi
    How do I get the Monday of this week. I am using:
    <code>next_day(trunc(sysdate,'DAY'),'Monday')</code>
    but get the coming Monday. Initially this code was working before apex was upgraded from 3.0 to 3.1.
    Why would this stop working.
    But if I was to use
    <code>next_day(trunc(sysdate,'DAY'-7),'Monday')</code>
    thanks
    Tony

    Hi Scott
    thats what I thought but I was not getting the present week's Monday. I am trying to get the Sunday and Monday of the present week so have had to put a
    -7 next to the sysdate.
    The Application I have been using was running in but when there was an upgrade to apex 3.1 then the returned dates have not been correct.
    thanks
    Tony

  • Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    1. Use the mouse to select the field and then press the space bar.
    2. A null string is the same as zero. What is the result for division by zero?

  • I am having trouble getting a numbers spreadsheet to hold different formats in the same column.  A column with a date formatted heading will not convert to $ for the cells below.   Any suggestions would help.

    I am having trouble getting a numbers spreadsheet to hold different formats in the same column.  A column with a date formatted heading will not convert to $ for the cells below.   Any suggestions would help.

    Hi Wayne,
    Thank you for this response.  I have tried this but when I start enterring $ amounts some, such as $6.00, go in OK others such as $4.00 appear as a date ie 4 Oct 12.  
    Kind regards
    Paul

  • Oracle XML Parser for PL/SQL - troubles with charset

    Hi,
    I'm using Oracle XML Parser for PL/SQL and have some troubles with charset of results xmldom.writeToBuffer and xmldom.writeToCLOB procedures.
    Some tags in my DOM documents contain text values in RUSSIAN (server nls_charset is CL8ISO8859P5). When I write document in varchar2 variable, buffer content is in UTF8 charset ( convert UTF8->CL8ISO8859P5 -OK).
    xmldom.setCharset(doc, 'ISO-8859-5') just after xmldom.newDOMDocument has no effect.
    xmldom.setCharset(doc, 'CL8ISO8859P5') has no effect also.
    Explicit charset direction in third parameter of
    xmldom.writeToBuffer and xmldom.writeToCLOB procedure has no effect.
    When I write document in CLOB, and then read part of CLOB in varchar2 buffer - result contain '?' in place of all russian text characters.
    What's a problem?
    How can I force XML Parser write XML in server charset?
    Oracle XML Parser for PL/SQL v 1.0.2

    I have the same problem. But in my case I am allowed only to use XML Parser for PL/SQL.
    Characterset 'WE8ISO8859P1' is used. And the language is latvian.
    After parsing a XML document and printing its contents, all latvian characters are replaced by "f".
    xmldom.setcharset(doc,'WE8ISO8859P1') has no effect.

  • I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to my laptop.

    I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to itune.

    You can't. It still thinks that your iPhone is synced with another iTunes library (the one that you had before you reformatted the hard drive.

Maybe you are looking for

  • Creation of lot with 04 type

    Dear Gurus, Can we control the creation of Inspection lot with the control key in routing for a production Order. Our requirment is system should create a inspction lot when a particular key is defined in routing. Please tell the step by step config

  • Different types of Transport in PI

    Hi ALL, we are working on a fresh implimentation project now on PI 7.1. i have worked on projects using file transport ..can any one tell me which is the best way of transport in PI 7.1. diffenrence between FIle ..CMS...CTS ..and its advantages .. an

  • Cannot create a new layer when opening a gif

    Using Photoshop Elements 8, I open a gif that I want to change the text for. I open the file and the first thing I want to do is create a new layer, but I am not able to. the New Layer button in the layers area is disabled, as is the Layers menu.  Ho

  • HT1535 The iPod tab next to the iTunes store tab pictured is not shown on my computer.

    I cant sync my music to my iPod anymore because it doesnt show up on the taskbar at the top. Is this an iTunes 11 update change, or is it because of my Windows 8 computer, or is it the settings I have on my computer by default.

  • Can I use sqlplus to import an application?

    Hi -- I tried this, but got errors. If I export an application, can I use sqlplus to import this application (using the generated .sql script from the export) into a different oracle instance? Are the steps to do this documented somewhere? Thanks