0
votes
4answers
32 views
SQL DROP TABLE foreign key constraint
If I want to delete all the tables in my database like this, will it take care of the foreign key constraint? If not, how do I take care of that first?
GO
IF OBJECT_ID('dbo.[Cours …
5
votes
6answers
83 views
How to turn this MySQL SELECT query into a DELETE query?
I want to delete certain items from the database. I have the following query:
SELECT *
FROM sheets, entries
WHERE entries.sheetID = sheets.id AND sheets.clientID = 13
This wor …
1
vote
7answers
69 views
SQL Server - bulk delete (truncate vs delete)
Hello folks,
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 chang …
1
vote
1answer
12 views
Permanent deleting under TFS 2005
How can I permanently delete a folder/file under TFS 2005 source control?
I know about the tf destroy command, but that only works with TFS 2008.
I also know about the TFS PowerP …
1
vote
3answers
19 views
cookie not deleting
I am using the following code to set a cookie in my asp.net mvc(C#) application:
public static void SetValue(string key, string value, DateTime expires)
{
var http …
1
vote
2answers
37 views
delete on batch
I have a db table that has > 14M rows.
If I attempt to perform:
delete from table
The connection hangs out.
How can I delete all the rows, in "batchs" ( I guess ) so they a …
3
votes
6answers
209 views
Deleting duplicate rows from table - SQL query
I need to delete duplicate rows from the table, like I have 3 duplicate rows in the table, my query will delete 2 rows from 3 duplicated rows.
How can I get this? Please help me.
…
4
votes
7answers
197 views
C++ array delete operator syntax
After I do, say
Foo* array = new Foo[N];
I've always deleted it this way
delete[] array;
However, sometimes I've seen it this way:
delete[N] array;
As it seems to compile and …
0
votes
2answers
59 views
How to recursively delete an entire directory with PowerShell V2
What is the simplest way to forcefully delete a directory and all its subdirectories in PowerShell? I am using PowerShell V2 in Windows 7.
I have learned from several sources that …
0
votes
1answer
33 views
Delete a key from an associative array
Consider var person=JSON.parse('{"name":"Alice","id",1234}').
How do I remove a key from the variable person? For example, how do I remove "name" completely, so that person becoem …
0
votes
2answers
23 views
delete hibernate entity without (attempting to) delete association table (view) entry
Entity A and B have a many to many relationship using link table AtoB.
If Entity A is deleted, the related links are deleted by hibernate. So far so good.
My problem is that my l …
2
votes
4answers
81 views
How to delete file which is used/locked by windows in java
I have some application, which has ability to update itself. Its downloads the jar file from the net, and then tries to replace used jar to run this application by downloaded one.
…
1
vote
6answers
76 views
DeleteFile fails on recently closed file
I have a single threaded program (C++, Win32, NTFS) which first creates a quite long temporary file, closes it, opens for read, reads, closes again and tries to delete using Delete …
1
vote
3answers
49 views
MFC multithreading problem with delete[] , dbgheap.c
Hi!
I've got a strange problem and really don't understand what's going on.
I made my application multithreaded using the MFC multithreadclasses.
Everything works well so far, b …
0
votes
5answers
58 views
mysql delete every other rows except the rows number in a given list
so basically here's what i want to do: i have an account table, i have a list of acct_id: (3, 24, 515, 6326, 17), assuming i have about 100,000 accounts in the table, what's the mo …
