Tagged Questions

Deleting is the act of erasing a piece of data.

learn more… | top users | synonyms

20
votes
2answers
9k views

Linq to Sql: How to clear a table fast

To delete all the rows in a table, I am currently doing the following: context.Entities.DeleteAllOnSubmit(context.Entities); context.SubmitChanges(); However, this seems to be taking ages. Is there ...
13
votes
5answers
8k views

Counting the number of deleted rows in a SQL Server stored procedure

In SQL Server 2005, is there a way of deleting rows and being told how many were actually deleted? I could do a select count(*) with the same conditions, but I need this to be utterly trustworthy. ...
11
votes
4answers
823 views

deleting a window property in IE

I can't find any information on this issue; why doesn't the following code work in IE? window.x = 45; delete window.x; // or delete window['x']; IE reports an "object doesn't support this action" ...
6
votes
3answers
726 views

Delete from multiple tables (linq to sql)

I'm using Linq to SQL to access my database. I want to have a 'delete account' feature which basically gets rid of all records in all tables that belong to a given user. What would be the most ...
6
votes
2answers
268 views

Cleaning ReSharper's TestResults files?

I'm using ReSharper 4.5 to execute my MSTest unit tests in VS2008. With each test run, it's creating files in this path: testProjectFolder\bin\Debug\TestResults How can I clean/delete those files ...
6
votes
8answers
4k views

Deleting multiple elements from a list

Is it possible to delete multiple elements from a list at the same time? If I want to delete elements at index 0 and 2, and try something like del somelist[0], followed by del somelist[2], the second ...
6
votes
11answers
571 views

Are there version control systems that allow you to permanently delete files?

I need to keep under version some large files (some Gigs). I don't need, and I can't keep under version all the version of the files. I want to be able to remove from my VCS large files version at ...
6
votes
13answers
488 views

Which is the better method? Allowing the thread to sleep for a while or deleting it and recreating it later?

We have a process that needs to run every two hours. It's a process that needs to run on it's own thread so as to not interrupt normal processing. When it runs, it will download 100k records and ...
5
votes
3answers
7k views

How to delete current row with jquery datatable plugin

i have a column with buttons in a table an i am using jwuery datatable plugin. The buttons say "Remove" and the idea is that when you click on that button it deletes the current row in the table. ...
3
votes
2answers
48 views

Core data deleting rules

My database has 3 entities: photos, places (where photos are taken) and tags (of photos). Each photo has a relationship to the place in which it has been taken. Each place has a set of photos taken ...
3
votes
2answers
99 views

deleting a pointer to a class which creates an array

Basically I have a class A which creates an array upon construction. class A { public: A (float height, float width, BYTE* data) { setsize(height,width); mydata = CreateNewBuffer(sizes); ...
3
votes
3answers
46 views

Wiping temporary files for security

I am working on an application that displays data from a database. Right now I am working on a set of modules that will generate an HTML page, including both text and images, display it in an web ...
3
votes
4answers
315 views

Bash scripting: Deleting the oldest directory

I have a simple Bash question which I do not seem to be able to get right. I want to look for the oldest directory (inside a directory), and delete it. I am using the following: rm -R $(ls -1t | ...
3
votes
5answers
80 views

Deleting large chunks of PHP effectively

I've just inherited a project, and been told that an entire folder, "includes/" needs to be removed due to licensing issues -- We don't have the right to redistribute the files in that folder, so we ...
3
votes
1answer
499 views

How do I delete one or more rows from my table using Linq to Entities *without* retrieving the rows first?

I understand I can map a delete stored procedure to the delete method for a particular type. However, this requires passing in a retrieved object to my context's DeleteObject method. This is bad ...
2
votes
0answers
16 views

Creting a game in python! Deleting an object?

I'm currently creating a game in python/ pydev! My problem is: I have the user sprite that can move around the screen. When he collides with another sprite, I then want that other sprite to disappear ...
2
votes
2answers
92 views

python: deleting list elements based on condition

I have a list of lists: [word, good freq, bad freq, change_status] list_1 = [['good',100, 20, 0.2],['bad', 10, 0, 0.0],['change', 1, 2, 2]] I would like to delete from the list all elements which ...
2
votes
2answers
138 views

Tkinter menu for chosing a date

I am building a dropdown menu that whould be used to choce a starting date. It has 3 cascades named year, month, day. The contents of the day cascade is generated so that the available days are true ...
2
votes
1answer
257 views

How to control point deleting in MATLAB?

I have some graphics. User can delete any selected points, how can I know which points exactly user deleted? by "deleted" I mean using MATLAB tool such as "Brush/Select Tool" and then clicking ...
2
votes
5answers
357 views

Delete files then directory | PHP

I have this so far: <?php $path = "files/"; $files = glob("" . $path . "{*.jpg,*.gif,*.png}", GLOB_BRACE); $i = 0; foreach($files as $file) { $delete = unlink($file); if($delete) ...
2
votes
3answers
411 views

Deleting While Iterating in Ruby?

I'm iterating over a very large set of strings, which iterates over a smaller set of strings. Due to the size, this method takes a while to do, so to speed it up, I'm trying to delete the strings from ...
2
votes
5answers
2k views

How to delete a binary search tree from memory?

I have a BST which is a linked list in C++. How would I delete the whole thing from memory? Would it be done from a class function?
2
votes
3answers
255 views

From Shell: Delete all files with apostrophes

How do I delete all files in a folder that has an apostrophe? for example: Baird/'s Tunnel.jpg Bach/'s Birds.jpg This isn//'t good.png I would like all those files deleted but ...
2
votes
2answers
495 views

Deleting rows cause lock timeout

I keep getting these errors when trying to delete rows from a table. The special case here is that i may be running 5 processes at the same time. The table itself is an Innodb table with ~4.5 million ...
2
votes
2answers
100 views

Why won't GDI let me delete large images?

My ASP.NET application has an image cropping and resizing features. This requires that the uploaded temporary image be deleted. Everything works fine, but when I try to delete an image larger than ...
2
votes
3answers
307 views

Git pull keeps deleting everything I've added

I've just started using git, been used to bzr in the past. Here is my problem: I have a git repo (let's call it "default") with files A, B, and C. (I actually update others' modifications with svn.) ...
2
votes
5answers
3k views

how do i remove an element of an array and shift the reamining elements down

how do i remove an element of an array and shift the reamining elements down so if i have an array array[]={1,2,3,4,5} and want to delete 3 and shift the rest so i have array[]={1,2,4,5} how ...
1
vote
4answers
52 views

Deleting the first two lines of a file using BASH or awk or sed or whatever

I'm trying to delete the first two lines of a file by just not printing it to another file. I'm not looking for something fancy... Here's my (failed) attempt at awk: awk '{ (NR > 2) {print} }' ...
1
vote
4answers
148 views

Which design pattern is better for saving/deleting data and why?

I cannot decide between the following two patterns for eg. saving a dataObject (bean in my case). The two options are: 1st abstract class DataService { protected void save(Object data){ ...
1
vote
4answers
104 views

Deleting columns in a CSV with python

I have been able to create a csv with python using the input from several users on this site and I wish to express my gratitude for your posts. I am now stumped and will post my first question. My ...
1
vote
2answers
221 views

Deleting a row from database and gridview in wpf

i want to delete a row from gridview and database - i write some code but this code just delete the first row of my gridview! Please help me. I used Entity Framework and wpf C#. using ...
1
vote
4answers
133 views

In Python, how do I remove from a list any element containing certain kinds of characters?

Apologies if this is a simple question, I'm still pretty new to this, but I've spent a while looking for an answer and haven't found anything. I have a list that looks something like this horrifying ...
1
vote
3answers
89 views

Deleting Cookies In Other Subdomains

I was wondering if it's possible to delete a cookie in PHP, meaning re-setting it's time to a time in the past, for a specific subdomain from another subdomain. For example: say I am executing the ...
1
vote
4answers
89 views

Is there a kind of design pattern or a methodology to delete a record on Db from UI?

Question: Is there any commonly referred methodology or a kind of design-pattern or a model when it comes to delete a record from user interface which exists in a Db? Basically what following steps ...
1
vote
2answers
80 views

Why is deleting data discouraged in Grails?

http://grails.org/doc/1.3.x/guide/5.%20Object%20Relational%20Mapping%20%28GORM%29.html#5.3.2%20Deleting%20Objects Note that Grails does not supply a deleteAll method as deleting data is ...
1
vote
4answers
192 views

Sed/Awk deleting selective lines

This may be a simple question, but I am struggling to find a solution, could anyone provide a simple UNIX sed or awk command to delete every 3rd and 4th line of a file starting from say the 5th line. ...
1
vote
2answers
86 views

Deleting parts of a file with php

After using file_get_contents to write to a html file, I need to delete certain parts of this files contents because the paths to css and images has changed. So I have lines as below : <link ...
1
vote
2answers
52 views

Powerpoint file can be deleted without consequence

I am working on a license management type application that copies a password protected zip file to the applications root. The user clicks a button "Open Presentation" and the zipped file is extracted ...
1
vote
2answers
767 views

Spring hibernatetemplate: delete caches?

I'm writing a test to see if my getHibernateTemplate().delete(x) works. Now I've discovered that in a single test there seems to be some caching (my test class extends extends ...
1
vote
1answer
401 views

Optional relationships in Core Data (deleting and checking)

I have a Core Data model with 2 entities: Game and ScoreTable. A Game has an optional relationship with ScoreTable. I usually check if a game has a ScoreTable by doing: NSManagedObject *scoreTable = ...
1
vote
1answer
1k views

ADO.NET entity data model deleting many rows

I have following structure of the database CREATE TABLE IF NOT EXISTS `klienci` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nazwa` varchar(50) NOT NULL, `miejscowosc` varchar(50) NOT NULL, ...
1
vote
4answers
1k views

Delete folder with items

How I can delete folder with subfolders (recursive deleting) in C++?
0
votes
0answers
25 views

Deleting a Row from a UITableView with CoreData fails

I got a Problem when I will delete the first row in a UITableView with CoreData... When I delete the first row I get this exception: "controllerDidChangeContent:. Invalid update: invalid ...
0
votes
0answers
10 views

Guard gem won't notice file deletions on OSX

I'm developing a plugin to the Guard Ruby gem on OS X and I'm struggling with getting the file deletion event work. All fires up nicely when a file is modified or created, but when it is deleted the ...
0
votes
2answers
47 views

Deleting rows from SQLite (Android) based on time

I've seen some similar questions on here, but none of them are helping so I figured I see if I could get some personalized help. I'm adding things to my database with a column called 'time_added' ...
0
votes
0answers
19 views

Deleting data from two mysql tables at the same time

I need to delete data from two tables in mysql. The code bellow deletes the job_id and ename data from table job_post if(!empty($job_del)) { $q1 = "delete from job_post where job_id = ...
0
votes
1answer
73 views

WP7: Delete IsolatedStorageFile

I would really appreciate some help with deleting a file from IsolatedStorage on WP7. I am basically downloading a file from the web, storing it in Isolated Storage and then uploading it to my ...
0
votes
1answer
55 views

Delete a row from Zend_Db_Table using JOIN

I need to delete a record using Zend_Db_Table referencing the rence table. In SQL the query would look like this: DELETE t1 FROM t1 LEFT JOIN t2 ON t1.id=t2.id WHERE t2.id IS NULL; Is there a way ...
0
votes
1answer
141 views

FileSystemWatcher in Java - Deleting a directory being watched

I have implemented a file system watcher. Whenever I try to delete watched directory, it generates ENTRY_MODIFY events for all the files or sub directories inside that directory. Is there any way to ...
0
votes
0answers
96 views

How to delete a jqgrid row without reloading the entire grid?

I have a webpage with multiple jqgrids each with inline editing enabled, "action" column (edit icons) enabled and pager disabled. I need to handle the delete event for each row so that I can process ...

1 2