Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
613 views

Linq to SQL: How to delete using only the primary key?

How do I delete a record using Linq to SQL using only the primary key, without having to retrieve the exsting record from the database?
5
votes
4answers
118 views

How do I delete all the rows of a table with a recursive structure (MySQL)?

I have a table in my DB, in which every row has a parent id which is the id of another row in the table (the table represents a tree-like structure). I would like to empty the table. But when I ...
5
votes
3answers
11k views

DataTable, How to conditionally delete rows

I'm engaged in a C# learning process and it is going well so far. I however just now hit my first "say what?" moment. The DataTable offers random row access to its Rows collection, not only through ...
4
votes
3answers
84 views

How can I delete records that match a condition, leaving 50?

Consider the following table: CREATE TABLE `prize` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `prize_details_id` bigint(20) NOT NULL, `status` tinyint(4) DEFAULT '0', `available_at` datetime ...
4
votes
0answers
268 views

UITableView callback after row deletion animation complete

I have a table with shadows above the top and below the bottom cell (using Matt Gallagher's solution here: http://cocoawithlove.com/2009/08/adding-shadow-effects-to-uitableview.html). These are added ...
3
votes
2answers
196 views

Oracle global_names DELETE problem

I'm using a database link to execute a DELETE statement on another DB, but the DB link name doesn't conform to global naming, and this requirement cannot change. Also I have global_names set to false, ...
3
votes
4answers
168 views

Making one table equal to another without a delete *

I know this is bit of a strange one but if anyone had any help that would be greatly appreciated. The scenario is that we have a production database at a remote site and a developer database in our ...
2
votes
2answers
129 views

Android : How to Refresh list upon item deletion in customized SimpleAdapter

May i know how to refresh the ListView item after i have remove a map list item in customized SimpleAdapter ? I have successfully implement the delete list item with list.remove(position), but when ...
2
votes
4answers
1k views

how to delete duplicate rows from ms access database (C#)

I have been going through various sites and codes, but nothing seems to end my misery. Either they help to find and remove duplicates for a specific column or they remove only from the datatable, not ...
2
votes
1answer
366 views

How to delete in MS Access when using JOIN's?

I am attempting to use the DELETE clause in MS Access and have an issue when also using the JOIN clause. I have notice this can be accomplished by using the DISTINCTROW key word. For example, the ...
2
votes
2answers
490 views

How update rows with reloadRowsAtIndexPath

I'm trying to delete cell with a Button. Here is the implementation of a cell. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ...
2
votes
3answers
1k views

Gridview Delete Button in ASP.NET

I just ask a question about this subject; All Row has a delete button in Gridview ASP.NET I have simple table AVUKAT Columns --> HESAP, MUSTERI, AVUKAT And i show in a Gridview. I activate ...
2
votes
1answer
579 views

asp.net mvc diff between DeleteAllOnSubmit and deleteonSubmit

What is the real difference b/w DeleteAllOnSubmit and deleteonSubmit and which one is more appropiate to use?
2
votes
3answers
879 views

deleting records from multiple tables at a time with a single query in sqlserver2005

I wanna delete records from child tables as well as parent table with in a single query. please find the query given below. here response header is the primary table and responseid is the primary key. ...
1
vote
2answers
42 views

In Android how to delete the entire record in Table without passing any arguments?

Hai i created a DataBase and inserted the value in one Class,and i try to delete the record in another class but,the Whole table is Deleted.i need to delete the entire record only without deleteing ...
1
vote
2answers
87 views

SQL DELETE with INNER JOIN

There are 2 tables, spawnlist and npc, and I need to delete data from spawnlsit. npc_templateid = n.idTemplate is the only thing that "connect" the tables. I have tried this script but it doesn't ...
1
vote
4answers
86 views

MySQL Delete duplicates in consecutive rows

Suppose this table: ID ColA ColB 1 7 8 2 7 9 3 7 9 4 5 8 5 6 9 6 6 9 7 5 4 The PK is the ID coumn. Now, I want to delete all duplicates of ColA and ColB in ...
1
vote
1answer
94 views

Excel Delete row if in named range

I have a worksheet with protected cells. There's an 'add row' button and I need a 'delete row' button. HOWEVER, I only want the user to be able to delete the row if it is within a named range. ...
1
vote
1answer
91 views

SQL Delete TOP statement

my table (sql sever 2000) contains large amount of rows, when i delete row, it extremely slow. i saw some post/forum that suggest to use a WHILE loop function to delete record by batch. my sql is: ...
1
vote
4answers
107 views

How to optimize this sql delete statement

I have 3 tables, the first one, table1, has as primary key the id column, the second table (table2) has a column table1_id that refer as foreign key to the table1.id, the third table (table3) has, as ...
1
vote
1answer
232 views

I want to make a delete button using php for my website [closed]

I want to write a "delete" button in php. So far I have echoed out the form needed with a delete button for every row of data. But now I'm trying to make the delete button work so that whenever you ...
1
vote
3answers
654 views

How to find index of a row based on the object value? (C#)

May be I got the wordings wrong, feel free to edit the topic. I have a datagridview and I want to remove a particular row from it (datagridview is not data bound). To remove, I need the index of the ...
1
vote
3answers
1k views

UITableView delete all rows at once

How is it possible to delete all rows from UITableView at once? Because when I reload table view with new data, I am still inserting new rows: - (UITableViewCell *)tableView:(UITableView *)tableView ...
1
vote
1answer
1k views

select multiple rows from uitableview and delete

i am displaying a list of items in a tableview.i need to select and delete multiple rows from the table at a time,any resources on how to do this
1
vote
3answers
177 views

In SQL syntax, is 'from' in 'delete from' optional if you plan to use 'where'?

I am new to SQL. We have some code that should work on SQL Server 2005/2008, Oracle 10 as well as Sybase. I was writing a script to try to figure out which tables a given stored procedure modifies ...
1
vote
1answer
921 views

Excel automation C#: How to delete multiple rows?

I have the following code and it does not delete the rows, it asks me to save over the current workbook but nothing is saved and EXCEL.EXE continues to run in Task Manager: protected void ...
1
vote
2answers
265 views

T-SQL Delete command basing on table variable

I need to delete some rows from table where indexes are equal indexes in table variable declare @m_table as table ( number NUMERIC(18,0) ) ... inserting some rows into @m_table ... DELETE ...
1
vote
3answers
420 views

SQL : how to delete the last row of a query

I have a table containing the scores of my game CREATE TABLE Scores ( PlayerName varchar(50), LevelId integer, Score integer, Difficulty integer ); and I would like to always limit the ...
1
vote
4answers
734 views

delete a row in html table using a hidden type and javascript

I have a table with HTML constructed using my servlet class. When trying to delete a row in this table using a javascript function I must first of all put different id to separate elements.and i ...
1
vote
1answer
2k views

VB.NET LINQ to SQL Delete All Records

I am having problems with deleting all records in a table with VB.NET. I am using this code to delete all records in the Contacts table For Each contact In database.Contacts ...
1
vote
2answers
1k views

ASP.NET - How to wrap GridView Delete in try catch or stop a row delete

I want to be able to wrap a gridview row delete in a try catch and display a nice error message on the screen or try to stop the delete from happening in certain circumstances. At the moment, I am ...
0
votes
1answer
35 views

UITableView- deleting last cell in section

This is my code to delete a cell in my UITableView: - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath ...
0
votes
2answers
39 views

Deleted Rows Daily

I have a DB table from which same data under a certain condition are lost at a specific time daily as if such statement is performed: delete * from table where category=1 I'd like to list all delete ...
0
votes
2answers
59 views

Simple Delete from table but I got this error “Must declare the scalar variable ”@Senduserid“ ”

I have a Gridview in my page Which I can Select each row i want by using checkbox when i select a row in Gridview and click on Delete button igot this error "Must declare the scalar variable ...
0
votes
5answers
68 views

Deleting duplicate rows with sql

I am trying to delete duplicate rows from my mysql table. I've tried multiple queries but I am keep on getting this error: #1093 - You can't specify target table 'usa_city' for update in FROM clause ...
0
votes
2answers
62 views

R: How can I delete rows if an element in a row satisfies certain characteristic?

I am trying to figure out a way to delete rows of matrix if a cell in that row satisfies a certain characteristic. For example: > mm <- matrix(c(1,2,3,2,3,4,1,2,3,4),5,2) > mm [,1] [,2] ...
0
votes
3answers
107 views

SQLDataSource DeleteCommand to get parameters

I am having some problems passing parameters to a DELETE command, and cant seem to get a good understanding on how it works. <asp:SqlDataSource ID="sdsPropertyList" runat="server" ...
0
votes
3answers
36 views

MySQL: DELETE FROM with information from a subquery

I have a table delete_requests where I store the id's for delete requests for the entries of my users table. Is it possible to delete from users with the information from delete_requests as a ...
0
votes
1answer
100 views

sqlite delete row count

I need to write a SQLlite query that will delete rows from a table above 200. I was thinking this would work: DELETE FROM [tbl_names] WHERE count(*) > 200 but that gives me: misuse of aggregate ...
0
votes
1answer
72 views

deleting tables on MySQL from jdbc

Problem when deleting tables from jdbc I have a. jar that deletes records from multiple tables through a previously prepared statement i did it this way: -- SQL delete from tabla_a using tabla_a ...
0
votes
1answer
144 views

Delete rows in table view associated with core data

My table view is populated from an array containing data in the core data, I want to delete rows while updating the core data correspondingly, here is my code of deletion. - ...
0
votes
0answers
101 views

Slickgrid collapse/expand tasks implementation

Can anyone please provide an example of Slickgrid collapse/expand tasks serverside implementation, In my current implementation the only issue I am facing with collapse and expand logic. Also example ...
0
votes
2answers
102 views

deleting data of more than one table through sql query in sql-server

i have a master table Staff. i have other table also such as staffStudy, StaffPenison, visitInfo etc. i haven't made any relation between these table. i want to know that if I delete the Staff table ...
0
votes
4answers
133 views

Android sqllite delete row failure

I'm trying to delete a row in a table where I know the row exists. I tried: final String s = "DELETE from %s where Name = '%s'"; String sql = String.format(s, GetTableName(), sListName); ...
0
votes
2answers
156 views

How to delete specific row in the gridview when item is binded from session

I have grid where i am binding items from session variable , where their around 5 similar items in the grid, i have to delete a specific selected row , on what basis i can delete the selected item, ...
0
votes
1answer
267 views

How to delete multiple rows in the radgrid based on the checkbox checked

I have a radgrid where item is being binded from codebehind ,how can delete specific rows in the grid based on the checkbox checked , and save the changes to the database.
0
votes
3answers
165 views

Delete all rows in an HTML table

How can I delete all rows of an HTML table except the <th>'s using Javascript, and without looping through all the rows in the table? I have a very huge table and I don't want to freeze the UI ...
0
votes
3answers
884 views

Write javascript for confirm delete in gridview rowdeleting event

I am deleting a row from gridview for which i have used gridview's default delete command field. On clicking, the gridview row deleting command gets fired and the selected row gets deleted. All good ...
0
votes
1answer
79 views

VBA for Excel - problem deleting rows

I'm trying to get VBA to delete a range of rows that are defined by two variables. I get an error message when the routine reaches the line that says Range(Cells(FirstDeletedLine, 0), ...
0
votes
3answers
135 views

DELETE + JOIN + ORDER BY + LIMIT = syntax error

Drop the ORDER BY + LIMIT, or the JOIN, and everything is peaches. Put them together and I seem to release the Kraken. Anyone who can shed some light? DELETE table1 AS t1 FROM table1 AS t1 LEFT JOIN ...

1 2