Tagged Questions
The truncation tag has no wiki summary.
16
votes
4answers
3k views
SQL Server silently truncates varchar's in stored procedures
According to this forum discussion, SQL Server (I'm using 2005 but I gather this also applies to 2000 and 2008) silently truncates any varchars you specify as stored procedure parameters to the length ...
15
votes
15answers
12k views
How can I mimic text-overflow: ellipsis in Firefox?
I have some dynamic text contained in a div that is set to whatever a user enters in a textbox field. If the text doesn't fit in the div, right now it just gets cut off at the edge and all the text ...
8
votes
7answers
3k views
SQL Server truncation and 8192 limitation
In SQL Server 2005 I am trying to query a varchar(MAX) column which has some rows with text data that exceed the 8192. Yet, In Management Studio I have under Tools --> Options --> Query Results --> ...
6
votes
4answers
376 views
C++ Numerical truncation error
sorry if dumb but could not find an answer.
#include <iostream>
using namespace std;
int main()
{
double a(0);
double b(0.001);
cout << a - 0.0 << endl;
for (;a<1.0;a+=b);
cout ...
3
votes
5answers
106 views
Converting int value to a char that is too small
Try the following on MSSQL 2005:
select convert(char(2), 123)
The key here is that char(2) is too small to accept the value '123'. I would expect to see a truncation error here, but instead the ...
2
votes
2answers
63 views
Truncating characters when importing with SAS
I have an Excel spreadsheet with company data and descriptions. Some of the cells basically contain mini-essays in them, pages and pages of straight text contained in a single cell. SAS has been ...
2
votes
3answers
129 views
Passing long long argument in Objective-C?
I am trying to pass a long long type as an argument to a function and failing. I can assign 5000000000 to a long long variable as follows:
long long value = 5000000000;
But when I try to pass that ...
2
votes
3answers
361 views
Dynamic memory allocation + truncating a string issue
First post here.
I've been fooling around with malloc, realloc and free in order to write some basic functions to operate on C strings (char*). I've encountered this weird issue when erasing the last ...
2
votes
1answer
122 views
CMake CTest prevent truncation of test name
I'm currently running CTest, but I have a problem whereby tests with long names. For example:
"API Part1 : Some test information w/ this input file"
get's truncated to something like
"API Part1 : ...
2
votes
3answers
1k views
String truncation in the middle, Mac style, CSS and jQuery
I need to implement a certain kind of string truncation where a string splits in the middle and its left part becomes resizable. Here is what it might look like:
"Lorem ipsum dolor sit amet. Ut ...
1
vote
1answer
79 views
Fix for WPF DataGrid column headers cut off?
In my WPF app I use a DataGrid, and when I have columns whose header label text is close to the width of the column, the right part of the column header text gets cut off by a region of blankness on ...
1
vote
0answers
96 views
MySQL data truncation Exception when uploading excel sheet
I'm doing a task of uploading several excel sheets into MySQL in java using Eclipse, and i am using CLOB (LONGTEXT)
when i try to execute the insert command its giving
Exception in thread "main" ...
1
vote
1answer
283 views
Ruby: FileUtils.cp truncates file; FileUtils.mv it does not?
This is weird… and I can't figure out for the life of me why it's doing it this way.
I've got a folder full of various CoffeeScript, SASS, HTML, and XML files.
I've got a Ruby script that's taking ...
1
vote
1answer
176 views
Fixed Point Development
I'm working on some fixed point coding these days.
If I have a bunch of 16 bit samples from an ADC and I do multiplication with a 16 bit filter coefficient, the result could be a 32 bit fixed point ...
1
vote
2answers
92 views
Output from ob_get_clean() is truncated at 1024 characters?
I'm working on someone elses code and there is ~800 lines of markup mixed in with tags. I'm trying to apply some templates to these pages and I thought I would start by capturing all the output in ...
1
vote
7answers
344 views
HTML Truncating in Python
Is there a pure-Python tool to take some HTML and truncate it as close to a given length as possible, but make sure the resulting snippet is well-formed? For example, given this HTML:
<h1>This ...
1
vote
3answers
460 views
How to change truncate characters in UILabel?
When the text of a UILabel gets truncated there are 3 dots inserted by default.
Is it possible to change these characters or disable them?
1
vote
2answers
250 views
SSIS OLE DB Data Flow Source: outputting a column that may have different lengths
I created an SSIS package so I can import data from a legacy FoxPro database at scheduled intervals. A copy of the FoxPro databaseis installed for several customers. Overall, the package is working ...
1
vote
1answer
348 views
Does the Android debugger truncate debug messages?
Im asking because Im trying to debug a SQL query problem and adb only seems to show part of the SQL string and chops off the end.
Im getting an "unrecognized token" error when running a query:
...
1
vote
1answer
273 views
How do I determine if truncation is being applied in my style through JS?
I am applying truncation using CSS styles:
.yui-skin-sam td:not(.yui-dt-editable) .yui-dt-liner{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-ms-text-overflow: ...
1
vote
1answer
54 views
Need advice on VOIP call trunking and termination
I am working on a project where we make a VOIP phone call to the end user, essentially, exactly like skype does.
The problem is, that all calls from VOIP need to be terminated as PSTN if it has to ...
1
vote
4answers
686 views
How can I get the full string of PHP’s getTraceAsString()?
I'm using getTraceAsString() to get a stack trace but the string is being truncated for some reason.
Example, an exception is thrown and I log the string using:
catch (SoapFault $e) {
error_log( ...
1
vote
2answers
167 views
JRuby on Rails post data cut short
I creating a site in JRuby on Rails (JRuby 1.3.0 ). I am using Tomcat with it also.
I am posting data to the server with a POST form. The post goes ok but is truncated when it gets to the ...
1
vote
2answers
1k views
Matching FORTRAN rounding in C#
FORTRAN provides several functions to convert a double precision number to an integral value. The method used for truncation/rounding differs. I am converting complex scientific algorithms which use ...
0
votes
2answers
34 views
'short name' for iOS apps possible?
I'd like to give my app one name for the App Store and one name that appears on the device, as app names that are too long are truncated with '…' on the device but not the store. Is this possible?
...
0
votes
0answers
100 views
JDBC PreparedStatement Data Truncation Exception
I am trying to insert the values into DB2 Database table
where the table has huge number of columns
However 5 columns in specific
Column1 - CHAR - 1 (fieldSize in db)
Column2 - DECIMAL - 11 - 2
...
0
votes
1answer
103 views
How do I truncate tables in an MDF in SQL Express?
The command EXEC sp_msforeachtable 'TRUNCATE TABLE ?' returns the following error:
The EXEC SQL construct or statement is not supported.
I execute the query like this:
Question
How do I ...
0
votes
0answers
84 views
MDI frame window caption truncated early when child maximized
I am having a problem with an MDI application written in C language using WINAPI.
I set a long title (more than 150 chars) for the MDI child window when it is created. The window caption fills up the ...
0
votes
1answer
143 views
Multiline CATextLayer with truncation
Is there a way to make a CATextLayer show the "..." if I have wrapped == YES?
0
votes
1answer
170 views
Lua socket receive string size problem
I have a Lua script that recursively sends commands and receives data back over a socket connection, using NSE (nmap scripting engine). It seems to usually work, until it gets a large string back, ...
0
votes
1answer
349 views
Title truncation in JPanel TitledBorder - Java swing
I've got a JPanel with a TitledBorder, but the contents of the panel are narrower than the title in the border and the title gets truncated.
I am using BoxLayout for the JPanel which as depicted here ...
0
votes
1answer
145 views
C++, Problems with Binary Files in sequence mode
I have a quite difficult problem with binary files. I have been asked to make a program that stores information in files, but in Sequential mode. As I am not allowed to modify things in sequential ...
0
votes
2answers
66 views
FirebirdDB Cant Run Procedure While Its Backup Db Can
I had a trouble in my database here, I use Firebird 1.5.3 and it work just fine until noe to read or write in normal way, but when I run a procedure, I got blank row result and the following message :
...
0
votes
2answers
459 views
PHP is truncating MSSQL Blob data (4096b), even after setting INI values. Am I missing one?
I am writing a PHP script that goes through a table and extracts the varbinary(max) blob data from each record into an external file. The code is working perfectly (I used virtually the same code to ...
0
votes
2answers
129 views
Avoiding truncation warnings from my C++ compiler when initializing signed values
I would like to initialize a short to a hexadecimal value, but my compiler gives me truncation warnings. Clearly it thinks I am trying to set the short to a positive value.
short my_value = 0xF00D; ...
0
votes
0answers
51 views
Handling of data truncation (short reads/writes) in FUSE
I expect any good program should do all their reads and writes in a loop until all data written/read without relying that write will write everything (even with regular files). Am I right?
...
0
votes
1answer
173 views
WinPCap Data Getting Truncated
Working on parsing Arp packets and I found this nice problem.
when receiving an Arp packet I was parsing the target's IP address.
I have c0 a8 in my hex dumb but after that it ends. I am missing ...
0
votes
1answer
311 views
Truncated files when copying CSV files using FileSystemObject
I am helping my son write a program to format files to load into another system. I have done this before with no trouble. Now I get a 13 KB comma delimited text file and I am copying it use FSO to ...
0
votes
3answers
961 views
Windows console logging to file loses tail end if application crashes; how to see tail end?
We build complicated console-based tools that produce a lot of commentary on the console. These tools process a lot of data and so runs are expensive and we don't like to do them more often than ...
0
votes
7answers
4k views
Flex/Actionscript truncateToFit on label component
I have a number of labels in my Flex application which have the "truncateToFit" property on them set to true. The problem is that, instead of displaying '...' at the end of any truncated text it ...
0
votes
4answers
964 views
VB6 Form Height/Width Ignored with Command Line Build
We are moving out of VB6 as quickly as we can, but in the meantime we've begun building our VB6 applications from the command line on a Build Server.
Problem: The build server has a basic video ...
0
votes
4answers
2k views
Truncation error SQL server 2005 Delete/Insert
So I am trying to do a bulk insert with SSIS and continually get:
"Microsoft SQL Native Client" Hresult: 0x80004005 Description: "String or binary data would be truncated."
Even though I already ...
0
votes
1answer
204 views
What is the tail truncation mark on iPhone?
I want to add some tail marks to several strings. Are there any marks like '\n' on iPhone?
0
votes
1answer
3k views
How to customize a mutiline label on iPhone?
How to let a label show multi-line strings?
e.g. The given string is @"HelloA\nHelloB\nHelloC\n".
How to show it like:
@"HelloA"
@"HelloB"
@"HelloC"