2
votes
2answers
27 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 …
0
votes
6answers
67 views
Deleting xml nodes using xslt
Hello,
Does anyone know how to copy only the first n nodes in a xml file and delete the rest using xslt? So say I only want to copy the first 10 nodes and delete the rest of the nodes that belong to …
0
votes
5answers
142 views
deleting a window property in IE
Hi,
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 …
0
votes
0answers
42 views
Quickest way to scheduled file deletion on Windows [closed]
Hello,
I have a windows server machine that takes daily backup daily and each daily backup takes 1.5gb thus every night, I want to remove backup files that are older than 1 week.
This is how my back …
1
vote
1answer
51 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,
…
0
votes
1answer
56 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
2answers
48 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 …
3
votes
1answer
279 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 …
0
votes
3answers
158 views
Delete all files within a directory vb6
Hi all,
I was wondering if anyone could help me with a vb6 function that would delete all files within a directory (excluding subdirectories).
Thanks
0
votes
2answers
89 views
commitimg to SVN protected repository
I used windows security to block to users the option of deleting files from the server on SVN clients.
(right-click on the repository dir, and security options).
now I want to commit a local …
0
votes
4answers
162 views
Delete folder with items
How I can delete folder with subfolders (recursive deleting) in C++?
2
votes
3answers
147 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.)
…
1
vote
5answers
586 views
how do i remove an element of an array and shift the reamining elements down
hi guys
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
…
4
votes
7answers
472 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 …
3
votes
8answers
305 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 …
