Topic profile page for Character string.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Character string.
Topic "Character string" was discussed 1,082 times on 224 sites in last 3 months
Started 1 week, 5 days ago (2009-11-23 12:40:00)
by Indhu Ram
Hi, When I exec the pl/sql package , I got the following error. But I'm not sure about which lines that I need to look for. How could I find those lines in a package of more than 500 lines? ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at "HDOT.EDR_RPT_CLASS_BY_HOUR_PACKAGE" , line 76 ORA-06512: at "HDOT....
Started 2 weeks, 4 days ago (2009-11-17 03:59:00)
by key4life
I cant seem to get this to work. Keep getting weird output. No clue how to fix it. Can someone help me please? Code: #include #include #include main() { char name[10]; char name1; int j,score,sum,avg,ducknum,abvavg; int a[5]; abvavg = 0; ducknum = 0; sum = 0; for(j = 1; j < 3; j++) { printf("Please ...
Started 3 weeks, 1 day ago (2009-11-13 11:05:00)
by meyekal
Hi ALL, So here is my issue. I have a Tabular form with ~10 coulumns. I would like 5 of those colums to be the SAME Select list (named LOV). The LOV is basiclly a select against a field in a different table. I can make 4 of these columns the named LOV without issue. Once I turn the 5th column to a named LOV I get the error report error: ORA-...
Started 3 weeks, 1 day ago (2009-11-12 22:10:00)
by william.hullsiek
I just finished running a trace using SQL Server Profiler. LinqToSql is generating the code: declare @p11 datetime set @p11='2009-11-12 21:48:55.5170000' This errors with the message.. Msg 241, Level 16, State 1, Line Conversion failed when converting date and/or time from character string. It looks like LinqToSql is generating DateTime2 character strings instead of DateTime strings. ...
Started 3 weeks, 4 days ago (2009-11-10 09:03:00)
by Ned Epstein
I created an on demand process in APEX 3.1. within the ODP i need to build a character string i defined two VARCHAR2 variables v_param1 & v_param2 and then assign them with the following javascript: v_param1 := ''; v_param2 := ''; These apparently cause a javascript syntax error because the ODP stops working. When I remove the '?...
Started 1 month, 1 week ago (2009-10-28 12:53:00)
by HecEden
Hi there, Any ideas how i return the number of characters before the second blank? MOT W156 VIRG P BLCK - Jun_09 i.e. if i use FIND(" ") this will return the number of characters before the first space but i need the number of characters before the second space
Started 1 month, 1 week ago (2009-10-27 14:44:00)
by Santiago
Hello, My customer is currently using Field Service on GP 10 SP4. They are in the SERVICE CALL HISTORY BY CUSTOMER screen and when they enter in a customer id that has a quotation mark (ex. 24 KARAT 106' ) they receive an error message. [Microsoft][SQL Native Client][SQL Server]Unclosed quotation mark after the character...
Started 1 month, 2 weeks ago (2009-10-16 11:59:00)
by q4u
Hi, How do you convert "hello world" into "hello" on the first line and "world" on the second? All the code below does is writes out is "hello#world" Code: Select all DATA lv_mat(100) TYPE c. lv_mat = 'hello'. CONCATENATE lv_mat cl_abap_char_utilities=>newline 'world' INTO lv_mat. WRITE:/ lv_mat. Thanks!
Started 2 days, 10 hours ago (2009-12-03 09:26:00)
by SchoolOfLife
Does an object in C++ of std::string type terminates with null character? The charater string literals in C++ (to maintain backward compatibility with C) end with a null character. Is this same with an object of std::string type? Thank you...
Started 2 days, 8 hours ago (2009-12-03 11:26:00)
by SchoolOfLife
Thanks Banfa....my previous problem is solved but now I have another question. When mixing std::strings and character string literals like: Expand | Select | Wrap | Line Numbers std::string s1 = "hello" std::string s2 = s1 + ", " + "world" s2 should contain only one null at end of s2. Isn't it? What happens to null that exist at end of s1 and character...
Started 3 days, 3 hours ago (2009-12-02 15:40:00)
by yaeko
Problem with character. (Encoding string to ISO-8859-1) Hi I have problems sending sms using API. I need to sens sms encoded ISO-8859 The problem is encoding to ISO. Not runs Code: baseurl = "http://www.myweb.com/api/sendsms.php" client = New WebClient client.Headers.Add("...
Started 6 days, 9 hours ago (2009-11-29 10:16:00)
by Ivoa
Hi every one, I want to add a character at the end of all the values of my matrix, but I'm not sure how to do it. I wrote this code : std::vector TextData::AddNoise( char noise) { std::vector l_mResult; for ( int i = 0; i < m_iNBColumn; i++) { std::vector l_vColumn; for ( int j = 0; j < m_iNBRow ; j++) { l_vColumn.push_back(m_...
Started 3 days, 7 hours ago (2009-12-02 12:14:00)
by Banfa
The problem with that trick is that on some systems (hopefully fewer and fewer as time goes by) the numbers produced by the random number generator don't have very much randomness in the lower bits due to the algorithm used. Using % as you have specifically discards the high order bits and relies on the low order bits. You get better randomness by using the whole of the range returned by rand...
Started 2 days, 6 hours ago (2009-12-03 12:46:00)
by Dave Peterson
Maybe you could modify your =vlookup() If the value you're matching on has to be text and is currently a number: =vlookup(""&x99,sheet2!a:b,2,false) or =vlookup(text(x99,"00000"),sheet2!a:b,2,false) ""&x99 will convert the number value in x99 to text. =text(x99,"0000") will keep the leading 0's MikeL ...
Started 2 days, 22 hours ago (2009-12-02 21:11:00)
by Dave Peterson
Maybe you could modify your =vlookup() If the value you're matching on has to be text and is currently a number: =vlookup(""&x99,sheet2!a:b,2,false) or =vlookup(text(x99,"00000"),sheet2!a:b,2,false) ""&x99 will convert the number value in x99 to text. =text(x99,"0000") will keep the leading 0's MikeL wrote: > > When importing an excel file the character " ' " appears in front...