Tagged Questions
The truncate tag has no wiki summary.
75
votes
6answers
23k views
Truncating long strings with CSS: feasible yet?
Is there any good way of truncating text with plain HTML and CSS, so that dynamic content can fit in a fixed-width-and-height layout?
I've been truncating server-side by logical width (i.e. a ...
41
votes
10answers
52k views
Cannot truncate table because it is being referenced by a FOREIGN KEY constraint?
Using MSSQL2005, Can I truncate a table with a foreign key constraint if I first truncate the child table(the table with the primary key of the FK relationship)?
I know I can use a DELETE without a ...
40
votes
11answers
47k views
How can I truncate a datetime in SQL Server?
What's the best way to truncate a datetime value (as to remove hours minutes and seconds) in SQL Server 2008?
For example:
declare @SomeDate datetime = '2009-05-28 16:30:22'
select ...
23
votes
6answers
1k views
How do I truncate a .NET string?
I apologize for such a question that likely has a trivial solution, but strangely, I could not find a concise API for this problem.
Essentially, I would like to truncate a string such that its length ...
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 ...
13
votes
5answers
4k views
Why 'delete from table' takes a long time when 'truncate table' takes 0 time?
(I've tried this in MySql)
I believe they're semantically equivalent. Why not identify this trivial case and speed it up?
13
votes
10answers
18k views
Truncate Decimal number not Round Off
I want to truncate the decimals like below
i.e.
2.22939393 -> 2.229
2.22977777 -> 2.229
12
votes
4answers
7k views
Truncate string on whole words in .Net C#
I am trying to truncate some long text in C#, but I don't want my string to be cut off part way through a word. Does anyone have a function that I can use to truncate my string at the end of a word?
...
12
votes
5answers
8k views
smart truncate in python?
I am looking for a way to do smart truncating in python. By this I mean that if a string is over X amount of characters then it will only show the first X characters and a suffix like '...'. By ...
11
votes
8answers
1k views
How to generate a compiler warning/error when object sliced
I want to know if it is possible to let compiler issue a warning/error for code as following:
Note:
1. Yea, it is bad programming style and we should avoid such cases - but we are dealing with ...
11
votes
5answers
9k views
What is the command to truncate a SQL Server log file?
I need to empty an LDF file before sending to a colleague. How do I force SQL Server to truncate the log?
10
votes
3answers
7k views
jQuery text truncation (read more style)
My question is very similar to "http://stackoverflow.com/questions/2104653/trim-text-to-340-chars" but in jQuery. It sounded very straight forward but when I searched around I couldn't find any ...
9
votes
1answer
1k views
How to check if UILabel is truncated?
I have a UILabel that can be varying lengths depending on whether or not my app is running in portrait or landscape mode on an iPhone or iPad. When the text is too long to show on one line and it ...
9
votes
4answers
845 views
Truncating unicode so it fits a maximum size when encoded for wire transfer
Given a Unicode string and these requirements:
The string be encoded into some byte-sequence format (e.g. UTF-8 or JSON unicode escape)
The encoded string has a maximum length
For example, the ...
9
votes
4answers
7k views
Using hibernate/hql to truncate a table?
What is the recommended way to truncate a table using hibernate/hql?
I've tried this:
Query query = session.createQuery("truncate table MyTable");
query.executeUpdate();
But it didn't work ...
9
votes
4answers
10k views
How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded?
How do I truncate a java String so that I know it will fit in a given number of bytes storage once it is UTF-8 encoded?
7
votes
2answers
311 views
Merging two Regular Expressions to Truncate Words in Strings
I'm trying to come up with the following function that truncates string to whole words (if possible, otherwise it should truncate to chars):
function Text_Truncate($string, $limit, $more = '...')
{
...
7
votes
5answers
974 views
What is the best way to empty a self-referential MySQL table?
I have a self-referential MySQL table with a recursive parent_id:
CREATE TABLE `recursive` (
`id` int(11) NOT NULL auto_increment,
`parent_id` int(11) default NULL,
`name` varchar(100) NOT ...
6
votes
1answer
99 views
Why does formatting a DateTime as a string truncate and not round the milliseconds?
When a Double is formatted as a string rounding is used. E.g.
Console.WriteLine(12345.6.ToString("F0"));
outputs
12346
However, when a DateTime is formatted as a string truncation is used. E.g.
...
6
votes
0answers
237 views
Importing a CSV with different row widths into Incanter?
I'm trying to import a CSV file with rows of many different lengths into Incanter using the read-dataset function. Unfortunately, it appears to truncate the rows down to the length of the first row. ...
6
votes
3answers
2k views
Truncate Table Within Transaction
Can the SQL "truncate table" command be used within a transaction? I am creating an app and my table has a ton of records. I want to delete all the records, but if the app fails I was to rollback my ...
5
votes
1answer
61 views
How to truncate an email local-part to 'abc…@gmail.com'
I use this little function to truncate strings when needed:
function truncate_text($text, $nbrChar = 55, $append='...') {
if (strlen($text) > $nbrChar) {
$text = substr($text, 0, ...
5
votes
1answer
326 views
bash: Truncate Filenames, keeping them unique
I'm using a for-loop similar to this one to truncate all filenames in a folder to 16 characters:
for i in *; do
Shortname=${i:0:16} # Let's assume I don't need the extension
mv "$i" ...
5
votes
7answers
2k views
How do I indicate long text into a smaller fixed column with CSS?
how do I fit long text into fixed with column where I have place for only line of text? I would need to shorten the text to fixed width (lets say to 100px) and I would like to add dots "..." at where ...
5
votes
6answers
2k views
SQL Server - bulk delete (truncate vs delete)
We have a table with a 150+million records. We need to clear/delete all rows. Delete operation would take forever due to it writing to the t-logs and we cannot change our recovery model for the ...
5
votes
9answers
6k views
Truncating a file while it's being used (Linux)
I have a process that's writing a lot of data to stdout, which I'm redirecting to a log file. I'd like to limit the size of the file by occasionally copying the current file to a new name and ...
5
votes
6answers
30k views
MySql - Create Table If Not Exists Else Truncate?
Here is the updated question:
the current query is doing something like:
$sql1 = "TRUNCATE TABLE fubar";
$sql2 = "CREATE TEMPORARY TABLE IF NOT EXISTS fubar SELECT id, name FROM barfu";
The first ...
4
votes
3answers
288 views
Truncate html text while taking in consideration “full stops” (in CachePHP TextHelper->truncate)
Edit:
I ended up using CakePHP's truncate() function. It's much faster and supports unicode :D
But the question still remains:
How can I make the function auto-detect full stops (.) and cut it just ...
4
votes
2answers
169 views
truncate string from a certain character in R
I have a list of strings in R which looks like:
WDN.TO
WDR.N
WDS.AX
WEC.AX
WEC.N
WED.TO
I want to get all the postfix of the strings starting from the character ".", the result should look like:
...
4
votes
3answers
241 views
MySQL: Truncate Table within Transaction?
I have an InnoDB table that needs to be re-populated every ten minutes within anywhere from 60k to 200k records. Our approach up to this point has been as follows:
Turn off Autocommit
Truncate the ...
4
votes
2answers
421 views
Rails truncate helper with link as omit text
I'm quite long description that I want to truncate using truncate helper.
So i'm using the:
truncate article.description, :length => 200, :omission => ' ...'
The problem is that I want to ...
4
votes
4answers
2k views
Truncate float numbers with PHP
When a float number needs to be truncated to a certain digit after the floating point, it turns out that it is not easy to be done. For example if the truncating has to be done to second digit after ...
4
votes
3answers
128 views
Different Truncation Results When Casting
I'm having some some difficulty predicting how my C code will truncate results. Refer to the following:
float fa,fb,fc;
short ia,ib;
fa=160
fb=0.9;
fc=fa*fb;
ia=(short)fc;
ib=(short)(fa*fb);
The ...
4
votes
1answer
1k views
How to recover data from truncated table
while going though sql server interview question in book of mr. shiv prashad koirala. i got to know that, even after using truncate table command the data can be recovered.
please tell me how can we ...
4
votes
2answers
484 views
Shrinking or partially truncating a file in DOS/FAT
I've been tasked with writing a data collection program for a Unitech HT630, which runs a proprietary DOS operating system that can run executables compiled for 16-bit MS DOS with some restrictions. ...
4
votes
4answers
3k views
Truncating all tables in a postgres database
I regularly need to delete all the data from my postgresql database before a rebuild. How would I do this directly in SQL?
At the moment I've managed to come up with a SQL statement that returns all ...
4
votes
4answers
547 views
MATLAB - Delete elements of binary files without loading entire file
This may be a stupid question, but Google and MATLAB documentation have failed me. I have a rather large binary file (>10 GB) that I need to open and delete the last forty million bytes or so. Is ...
4
votes
1answer
3k views
jquery truncate plugin
Is there a jquery truncate plugin that doesn't have trouble with HTML in the content?
For instance this plugin does not handle HTML well:
http://www.reindel.com/truncate/
4
votes
6answers
937 views
Truncate a UTF-8 string to fit a given byte count in PHP
Say we have a UTF-8 string $s and we need to shorten it so it can be stored in N bytes. Blindly truncating it to N bytes could mess it up. But decoding it to find the character boundaries is a drag. ...
4
votes
4answers
142 views
SQL Mass deletes
I'm trying to shrink some databases down so that my developers can load them to their local machines. I've identified several tables that hold historical data (10+ years worth) that would ...
4
votes
1answer
1k views
How do I create a new Joda DateTime truncated to the last hour?
I am pulling timestamps from a file that I want to create a new DateTime for, but I want to create the DateTime at the floor of the hour (or any Joda Period will do).
How Can I do this?
4
votes
6answers
9k views
Truncating Query String & Returning Clean URL C# ASP.net
I would like to take the original URL, truncate the query string parameters, and return a cleaned up version of the URL. I would like it to occur across the whole application, so performing through ...
4
votes
3answers
4k views
What is a unix command for deleting the first N characters of a line?
For example, I might want to:
tail -f logfile | grep org.springframework | <command to remove first N characters>
I was thinking that 'tr' might have the ability to do this but I'm not sure.
...
4
votes
3answers
3k views
Truncate Slow Query Log in MySQL
What's the safest way to truncate the MySQL slow query log (under Linux primarily, but Windows would be handy to know) while MySQL is running?
By safe I mean:
Mustn't cause any permissions problems
...
4
votes
8answers
7k views
mysql duplicate entry error when there is no duplicate entry (bulk load via php)
i am using mysql (5.0.32-Debian_7etch6-log) and i've got a nightly running bulk load php (5.2.6) script (using Zend_DB (1.5.1) via PDO) which does the following:
truncating a set of 4 'import' ...
4
votes
5answers
2k views
How do I truncate a string while converting to bytes in C#?
I would like to put a string into a byte array, but the string may be too big to fit. In the case where it's too large, I would like to put as much of the string as possible into the array. Is there ...
3
votes
2answers
79 views
Perl Concat String Truncates Beginning of Line
I am running into a strange issue in perl that I can't seem to find an answer for.
I have a small script that will parse data from an external sorce (be it file, website, etc). Once the data has ...
3
votes
1answer
317 views
Oracle performance issue with massive inserts and truncates (AWR attached)
I'm using Oracle to synchronize events between two nodes of my application server (never mind why/if that's the best way/etc. This is a given).
To do so, I'm using an "events" table that one node ...
3
votes
1answer
457 views
Auto-truncate assigned string to the length of the field?
I met a problem when migrating dbexpress driver from 10 to 11.
I have the following codes to execute an update statement in SQL Server:
sql.add('UPDATE mytable SET myfield=:AFIELD');
...
3
votes
1answer
168 views
Unexpected sp_MSForEachDB behavior
I'm working to enhance my understanding of some system sprocs and I'm very confused by this script I was working on. To exercise my understanding of sp_MSForEachDB I decided to write a script that ...