Data truncation occurs when data or a data stream (such as a file) is stored in a location too short to hold its entire length. Data truncation may occur automatically, such as when a long string is written to a smaller buffer, or deliberately, when only a portion of the data is wanted.

learn more… | top users | synonyms

0
votes
0answers
21 views

VarChar to NVarChar causing truncate error [migrated]

I am importing some data from a temporary table which has a column defined as VARCHAR(150). The destination tables column is defined as NVARCHAR(200). I'm using an INSERT INTO statement, but when I ...
0
votes
1answer
31 views

truncate characters in a HTML element - Django Templates

In my django templates i have a list of objects which is rendered as follows: <li class="keys"> {% for key in job.key_list|slice:":2" %} {% if not forloop.last %} <a ...
0
votes
2answers
22 views

Truncate function for SQLite

Does there exist for SQLite something similar as the TRUNCATE function from MySQL? SELECT TRUNCATE(1.999,1); # 1.9
0
votes
3answers
23 views

Truncating text within a span within a table

So I have a table setup to truncate text perfectly.... until I wrap the text in that table into a div. See this JSFiddle as an example: http://jsfiddle.net/3DKMJ/ This works for truncating the text ...
1
vote
1answer
22 views

android:ellipsize in ICS text continues after ellipsis

I have a textview that I am programmatically setting maxLines with and then setting it to android:ellipsize="end". It works partially, but for some reason the text that is being truncated continues ...
0
votes
0answers
29 views

MySQL trigger before insert TRUNCATE table

I want to create a trigger that will empty the table before each insert, but it does not work CREATE TRIGGER on_insert BEFORE INSERT ON `list` FOR EACH ROW BEGIN TRUNCATE `list`; END; The MySQL ...
0
votes
1answer
28 views

Truncating Description Text in Magento

I am using Magento 1.7.0.2 and I want to truncate texts of long item descriptions. So, I stumbled upon this: http://www.jeremymartin.name/projects.php?project=jTruncate. In my page.xml the following ...
0
votes
1answer
17 views

MySQL delete ok but truncate failed

I have a table "student" table and "evaluation" table that refers to "student", when i tried DELETE any data, it's ok, but when i try to truncate it, it failed with message: ERROR 1701 (42000): ...
-1
votes
3answers
43 views

C++ Truncating Floats in Function Return [closed]

I have written my own FloatArray class to use for a project. The problem I'm having is that when I use the get method to return the value at a given index, the returned value is a truncated int and ...
0
votes
1answer
65 views

The statement did not return a result set. Java Error

I am trying to delete data from a table from java using JDBC. First I am counting the no of rows and making sure the table is not empty and then Truncating the data. Here is the code I am using ...
3
votes
3answers
44 views

How to properly truncate a float/decimal to a specific place after the decimal in python?

In Python 2.7.3, this is the current behavior: >>> 8./9. 0.8888888888888888 >>> '%.1f' % (8./9.) '0.9' Same appears to be true for Decimals: >>> from decimal import ...
-2
votes
4answers
44 views

Truncate all digits except first

I have a function that returns: 3333333333333333/5000000000000000 which is meaningless. How do I truncate all digits except the first, so it becomes 3/5 ?
0
votes
4answers
32 views

Truncate number of li's in a list if more than a certain number

I would like to achieve the following: If there are more than 12 li's within a given ul, replace the last one with "..." and hide any that appear after the 12th one. Can anyone throw some pointers ...
-1
votes
0answers
46 views

Truncate text based on Container height

I need to be able to truncate Text in a Label based on its container's height. I successfully followed the tutorial here which truncates text (in CodeBehind) based on the containers width. ...
2
votes
1answer
46 views

strings get randomly truncated in PHP

I have an issue with a PHP script I'm developing. Sometimes (very rarely, but it occurs) strings don't get concatenated correctly, as fragments of the string get lost during the process, resulting in ...
0
votes
2answers
46 views

byte[] to String conversion with proper truncation in Java

I have a byte array of size 200 that has data received with socket.receive(). Let's say the packet data is "hello". int size = 200; DatagramPacket packet = new DatagramPacket(new byte[size], size); ...
0
votes
2answers
66 views

Truncate float so as to have only two decimals

C++ I would like to cout float f = 2.3333, but only with two decimals. How do I do that? I remember something like this, but it doesn't work: cout << f:2 << endl;
0
votes
2answers
59 views

Split a file in several output

I am trying to divide a big file into different files containing single information for each variable inside the file. my input file look like this: #CHROM POS ID REF ALT QUAL ...
0
votes
1answer
38 views

Truncate or Delete tables from the MySql database

I have a databse called store having 100 tables having too much foreign key references with tables, having thousands of records. Problem: Is it possible something like truncate to delete all the rows ...
0
votes
3answers
52 views

truncate multi tables

Is there a possibility to truncate with one SQL statement, multiple tables? Like this: truncate table #OBJ_AvailabilityTraining, #OBJ_AvailabilityHoliday, #Dates_temp; Regards
0
votes
2answers
38 views

Cannot truncate table [duplicate]

When I try to truncate the table, i got the error Message as follows, **Cannot truncate table 'Locations' because it is being referenced by a FOREIGN KEY constraint.** I don't know the query for ...
0
votes
1answer
44 views

SQL Server: About improving diskspace

I've tried to find out the answer to this question, but i haven't found a clear and/or precise answer. In MS SQL (2008 in this case) does any of this commands: Delete, Truncate or Drop (table), ...
0
votes
1answer
20 views

Securing data by truncating / adding bytes at runtin

I do have an android application that downloads PDF files for display in a magazine app. To secure the data I am already setting a user password. I was additionally thinking of removing the last 100 ...
0
votes
1answer
38 views

Excel VBA unexpected truncation

So I've spent the better part of the day debugging my VBA Class module and came upon a worrying phenomenon. On the main spread sheet I have a cell formatted as "currency", with 9 decimal place ...
0
votes
2answers
102 views

ORA delete / truncate

I'm using SQL loader to load my data into database. Before I insert the data I need to remove existing data in the table: options(skip=1,load=250000,errors=0,ROWS=30000,BINDSIZE=10485760) load data ...
-2
votes
6answers
47 views

in php, how do i truncate a string by x characters starting from the end? [closed]

How do I truncate a string thats 120 characters to 100 characters but have the count of the length start from the end of the string? So that the 20 characters are removed from the beginning of the ...
3
votes
2answers
74 views

Reading a file that might be truncated in Perl

I'm using Perl to read through a log file that might be truncated at any point. If this happens, I want to start reading the file at the beginning again, but the default Perl behaviour seems to be to ...
1
vote
1answer
101 views

How to display android actionbar title without truncation occurring

I have an app with a reasonably long title (e.g. My Long Title App). I am using an ActionBar and noticed the app title keeps being truncated (e.g. My Long Title A...). This happens even though 2 ...
0
votes
1answer
137 views

How do I truncate all data in my MySQL database?

I'm using MySql 5.5 on Mac 10.7.5. From the shell (I'm using bash), I'd like to be able to run a command o truncate data in all tables. Also, I'd like to enter a single command that won't prompt me ...
1
vote
2answers
114 views

How to rollback delete command without using transaction

How to rollback delete command without using transaction ? if we can't , then what's the difference between Truncate & delete ?
0
votes
0answers
54 views

Truncate select element with dots, but not the options themselves [duplicate]

I am using knockout.js to populate a element with some options. <select id="truncate" data-bind="foreach: myOptions, value: dropdownValue, attr: {title: dropdownValue}"> <option ...
2
votes
2answers
87 views

Text-overflow CSS truncation

Earlier i was doing it dynamically using JS.. but we were getting some performance issues cuz of which we have to come with an alternative option. I am now truncating a long text on my tab names ...
0
votes
1answer
124 views

Rails truncate with a 'read more' toggle

I have a paragraph that I want truncated with the option of clicking "read more" and have it slide open with the rest of the content. The content is coming from a database field. Here's what I have ...
1
vote
1answer
592 views

Truncated Data when Importing from Excel to an Access Memo Field

Access is truncating the data in a couple Memo fields when I am appending an Excel file. The field in the Access table is already set as a Memo type. I believe the problem is that I do not have any ...
0
votes
1answer
100 views

DTS pkg converted to SSIS failing due to truncation issue

I am having an issue where I need to bring DTS pkgs to a new server and have them run as a scheduled SQL job. I have gone into the DTS pkg and edited the connections to include the new 2008 server ...
1
vote
5answers
95 views

Truncate to a whole number…and if statement in determining if it is not a whole number

our prof. gave us this pseudocode a while ago...and i'm having a hard time with this part Pseudocode and the array index value is 14 with 14 string names Shell_Sort(Arr,N) { If(N=1) then { ...
0
votes
1answer
70 views

When casting float to int, why do numbers > -1 and < -0.5 go to -1, and numbers >= -0.5 and < 0 go to 0?

I always thought when floats get truncated to ints, it always becomes the highest number smaller than the float. However, when the float is between -0.5 and 0, it gets converted to 0 instead of -1! ...
1
vote
3answers
98 views

Truncating string to 125 characters in Div element

I have Div element having the following content It is a dummy text Lorem Ipsum Iswwpe ID DFDLJLKDjlk It is a dummy text Lorem Ipsum Iswwpe ID DFDLJLKDjlk It is a dummy text Lorem Ipsum Iswwpe ID ...
1
vote
1answer
157 views

Utilizing fancybox, jquery-isotope, and truncated text, all in one! (Oh, and it's in Drupal, too)

We are using Drupal for one of the sites we maintain (and JQuery as the library). One of our pages is using the jquery-isotope plugin (specially the views-isotope module) for sorting in views, and ...
0
votes
0answers
47 views

truncating .xml text inside a spry div

I've gotten pretty close to figuring this out. I'm trying to get text that is being source from a .xml file to truncate inside a spry div. here's where I'm at, i've gotten the more/less link to show ...
1
vote
0answers
100 views

How to empty the buffer stringIO in python

Actually i am trying to export a csv file with some data and below is my code import csv from cStringIO import StringIO import web def download(list__of_records): csv_file = StringIO() ...
1
vote
1answer
59 views

PHP truncate mb_substr is giving different length results

I'm using this function to truncate some titles to a specific length: function truncateUTF8($str, $length, $breakWords = TRUE, $append = '...') { $strLength = mb_strlen($str); if ($strLength ...
0
votes
1answer
59 views

Sitecore Analytics truncation

We have implemented Sitecore for our future site. We are going live soon with our corporate site. We had some testing done on this site to make sure everything was working right. There is some data ...
-1
votes
3answers
42 views

Truncate php variable before symbol

Can anyone help me with a quick solution to a problem? I have a string that is returned from an api, the string comes like this: $year = "181?make=2008" So I was using substr($year, 0,3); to get ...
0
votes
2answers
89 views

Truncate double or add extra 0 to the decimal - Java

This might be a duplicate, but I cannot find any answers that work with my code. I'm trying to truncate my results for a method(for calculating a fee) in Java. I then try to write the results to a ...
1
vote
2answers
74 views

Truncate model property in ASP.Net MVC

Im currently using a truncate and texteditor in different way. And both is working fine but I facing this problem. I want to truncate a text inside the texteditor. T_T Im using truncate this way and ...
1
vote
0answers
75 views

Cakephp Fixtures automatic truncate table not working properly

I recently switched over from cakephp 2.2.5 to 2.3 and the auto-truncate table is no longer working in 2.3. What I did in 2.2.5 was just testing the framework using some small tables with no ...
0
votes
1answer
57 views

Extracting parts of words from a file

I have a list, "list A," containing tens of thousands of entries (4 example entries shown below). I'd like to create from "list A" another list, "list B." I need each entry of "list B" to contain ...
0
votes
2answers
84 views

strip_tags|truncate:150 only return a few chars

I have job search page which display all jobs with its first 150 chars from jobdescription: {$listing.JobDescription|strip_tags|truncate:150} in smarty php template file will return: ...
1
vote
2answers
193 views

Trunk8 jquery plug-in only truncates until first breaking space. How do I truncate a whole post?

I'm using the trunk8 jquery plug-in with rails (http://jrvis.com/trunk8/#toggle) and it only truncates the first few sentences until the first breaking space. Here's my code: <%= ...

1 2 3 4 5 10