Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
3answers
11k views

Rails migrations: Undo default setting for a column

Hi Stack Overflow Community! I have the problem, that I have an migration in Rails that sets up a default setting for a column, like this example: def self.up add_column :column_name, :bought_at, ...
13
votes
6answers
30k views

Drop shadow on a div container?

I have a searchbox with auto-suggest that pops a div up underneath it with multiple search string suggestions (like google). Is it possible to have drop shadow on the auto-suggest box with CSS or ...
11
votes
7answers
9k views

Oracle: If Table Exists

I'm writing some migration scripts for an Oracle database, and was hoping Oracle had something similar to MySQL's IF EXISTS construct. Specifically, whenever I want to drop a table in MySQL, I do ...
10
votes
2answers
5k views

How to drop unique in MySQL?

Create Table: CREATE TABLE `fuinfo` ( `fid` int(10) unsigned NOT NULL, `name` varchar(40) NOT NULL, `email` varchar(128) NOT NULL, UNIQUE KEY `email` (`email`), UNIQUE KEY `fid` (`fid`) ) ...
7
votes
3answers
5k views

Force drop mysql bypassing foreign key constraint

I'm trying to delete all tables from a database except one, and I end up having the following error: Cannot delete or update a parent row: a foreign key constraint fails Of course I could trial ...
5
votes
1answer
116 views

Dropping a column with a foreign key

On my mysql DB with inno_db engine, I have a table with a foreign key. I want to drop the column (along with the foreign key and the associated index of course - i don't need the whole column!) ...
4
votes
2answers
247 views

Efficient way to pick/delete a list of rows/columns in a matrix in Mathematica

This question is in a way a continuation of the question I asked here:Simple way to delete a matrix colum in Mathematica to which @belisarius and @Daniel provided very helpful answers. What I am ...
4
votes
3answers
2k views

SQL: deleting tables with prefix

i know how to delete my tables in MySQL, DROP TABLE but now i need to know how to delete my tables who all have the prefix myprefix_ How to? --I NEED TO DO THIS IN PHPMYADMIN, IN A BROWSER. NO ...
3
votes
1answer
71 views

TCP Servers: Drop Connection, instead of resetting or responding?

Is it possible in Node.JS to "drop" a connection in such a way that The client never receives a response (200, 404 or otherwise) The client is never notified that the connection is terminated (never ...
3
votes
2answers
214 views

Get body from Outlook email [Drag’n’Drop]

I’m working with WPF and I’m trying to make a drag’n’drop textbox. In this textbox I want to get the body of an email which I drag from outlook. The code works but I think I need something to ...
3
votes
1answer
80 views

how to get file paths from files dragged from windows explorer into JFrame in Java

I need to get the dropped files' paths. I have implemented the drop(DropTargetDropEvent e) method in my JFrame which implements DropTargetListener which has the following code: public void ...
3
votes
2answers
80 views

C++ - Accessing a file that was “dropped” on the executable

I have used a number of programs where I am able to use the programs functions by simply dragging and dropping a file onto the executable. For example, if there is a program that formats text files, ...
3
votes
2answers
3k views

How do I DROP multiple columns with a single ALTER TABLE statement?

I would like to write a single SQL command to drop multiple columns from a single table in one ALTER TABLE statement. From MSDN's ALTER TABLE documentation... DROP { [CONSTRAINT] constraint_name | ...
3
votes
1answer
763 views

jQuery sortable drag and drop - cloning and other issues

I'd like to begin with saying what I'm trying to do. I'm currently working on a menu generator (idk how to name it exactly), something like placing widgets in WordPress but for creating menu on a ...
3
votes
2answers
134 views

Drop nested Lists in Mathematica

Consider : Tuples[Range[1, 3], 2] I would like to drop some of the sublist based on the following list : sublistToTemove = {1,2,3,6,8} Desired Output : {2, 1}, {2, 2}, {3, 1} Corresponding to ...
3
votes
1answer
625 views

HTML5 Drag and Drop anywhere on the screen

I have a debugger log that I've written in JavaScript for a project I'm working on. The log is basically an <aside> tag in HTML5 that only shows when needed. I wanted to play around with the ...
3
votes
8answers
2k views

Internet Explorer 9 Drag and Drop (DnD)

Does anyone know why the following web site drag and drop examples (plus many other tutorials online) don't work in Internet Explorer 9? Chrome, FireFox and Safari are all OK. ...
3
votes
3answers
3k views

SQL Server: drop table cascade equivalent?

In oracle, to drop all tables and constraints you would type something like DROP TABLE myTable CASCADE CONSTRAINTS PURGE; and this would completely delete the tables and their dependencies. What's ...
3
votes
1answer
195 views

python itertools skipping ahead

I have a list of lists. Using itertools, I am basically doing for result in product([A,B],[C,D],[E,F,G]): # test each result and the result is the desired product, with each result containing ...
3
votes
3answers
201 views

Drop down list implementation in R

I am using the following code for the Share Price Application I have been developing (with plenty of help from people here that is greatly appreciated!). One of the things it should do is allow the ...
3
votes
1answer
542 views

jQuery UI Drag and Drop causes bound click to trigger

I've got a UL of items using jQuery UI that I have drag and drop capable. However, I also need to be able to click on one of the items in the list and trigger off a little routine that adds a header ...
3
votes
3answers
604 views

jQuery getting value from a drop down selected

traditionally we write var value = $("#drop-down-id").val(); to get the value. IN my case, some of the options contains multiple words with spaces like "Allow All","Internet Users" etc. What I am ...
3
votes
3answers
693 views

Does dropping a table in MySQL also drop the indexes?

It's not explicitly mentioned in the documentation (http://dev.mysql.com/doc/refman/6.0/en/drop-table.html). I ask because I just saw a curious database migration in a Rails project where the ...
2
votes
1answer
40 views

drop index or constraint without knowing its name for Oracle

On a oracle database I have a foreign key, without knowing its name, just the column_name and the reference_column_name. I want to write a sql script which should drop this foreign key if it exists, ...
2
votes
2answers
39 views

How can you drop an HttpRequest connection in Django when TLS/SSL is not being used?

I'm writing a Django 1.3 view method which requires TLS/SSL to be used. I want to entirely drop the connection if an HttpRequest is received without using TLS/SSL and NOT return any kind of response. ...
2
votes
1answer
29 views

Drag and drop SVGs with Raphael JS

Looking for some advice (example would be great) on dragging and dropping SVGs using RaphaelJS. I have found how to drag an object created withint Raphael window.onload = function() { var R = ...
2
votes
2answers
34 views

Error message when dropping constrain

Every time I want to drop a constraint from a column I get an error. I can't see the problem. I am using postgres. So I have created a table with two columns: CREATE TABLE TableA( person_id INT ...
2
votes
2answers
80 views

UAC elevation does not allow drag and drop

I have a .net application where I need to elevate with admin rights due to accessing some low level win APIs. I am doing it using requestedExecutionLevel in application manifest set to ...
2
votes
1answer
39 views

Drop rows of data based on a fields length

I'm having some issues with data quality and the subsequent formatting of the data. The data is DOB in this format 20111021, but some entries are one of the following - '0''101''10101'. Can I drop ...
2
votes
2answers
164 views

postgresql, DROP FUNCTION without knowing the number/type of parameters?

I keep all my functions in a text file with 'CREATE OR REPLACE FUNCTION somefunction'. So if I add or change some function I just feed the file to psql. Now if I add or remove parameters to an ...
2
votes
1answer
161 views

Orphan constraints in SQL Server database

Running the following query results in all constraints in our client's database. However, several rows in the result set don't seem to have a parent, i.e. parent_object_id = 0 and ...
2
votes
5answers
121 views

Drop tables that are not in a list?

I need to drop about 20k tables. I know the names of the tables that are NOT to be dropped. If I have table names "a,b,c,d,e,f,g...", how can I drop all tables that are not in the list "a,b,c"?
2
votes
3answers
425 views

How to drop tcp packet in linux kernel but do not receive again and again?

I want to change the linux kernel code to filter some tcp packet and drop it. But I always keep receiving it again and again. Here is my code in /net/ipv4/tcp_ipv4.c int tcp_v4_do_rcv(struct sock ...
2
votes
2answers
206 views

Determining the state of the dropIndicator for a tree component in Flex 3

I have a custom class that extends the Tree component so I can add some logic to the drag and drop functionality and not allow folders to be dropped inside folders. In the dragOver function, I am ...
2
votes
0answers
340 views

drag & drop image outside and inside a UIScrollView

In my project I'm having a scrollview with a view images inside. I'd like to drag them from my scroller to my View and counterwise. Is there someone who has some experience with this type of ...
2
votes
2answers
268 views

How can we drop a database in android?

How can we drop a database in android?
2
votes
2answers
577 views

How to drop multiple databases in SQL Server

Just to clarify, ths isn't really a question, more some help for people like me who were looking for an answer. A lot of applications create temp tables and the like, but I was surprised when Team ...
2
votes
2answers
539 views

WPF Drag Drop between Listboxes in different UserControls

This is the structure of my Application Main Window has two ContentControls Each ContentControl has a UserControl Each UserControl has a ListBox So Graphically speaking the user is presented with a ...
2
votes
1answer
194 views

How to delete all tables with prefix “bkp” from a given database?

I have a SQL server 2005. In that server I have 3 databases -> a,b,c. If I want to delete tables Tables only from database "c". The table's name should start with "bkp" Table should be created one ...
2
votes
2answers
167 views

Why does the following SQL script take forever to run?

I have the following Oracle SQL: Begin -- tables for c in (select table_name from user_tables) loop execute immediate ('drop table '||c.table_name||' cascade constraints'); end loop; -- sequences ...
2
votes
0answers
447 views

jQuery odd behavior of collapsible/movable panels with drag/drop within them

First of all, huge kudos to 'Web Developer Plus' for writing most of the initial code! I have a list of 'items' which I can drag into any one of the blue boxes inside the widgets, and then sort them. ...
2
votes
8answers
246 views

How to drop Stored Procedures in a SQL 2000 + SQL 2005 compatible manner?

I have a project that requires me to do development in SQL Server 2005, but do deployments to a SQL Server 2000 box. For 99% of the SQL code, I have no problems, everything appears to be backwards ...
2
votes
1answer
103 views

Enforce SQL Server to drop a database

When I'm using Management Studio Express to drop a database there is an checkbox "Close existing connections." which close open database and enforce it to drop. How can i drop a database programmatic ...
2
votes
0answers
497 views

WPF drag cursor in default cursors

I'd like to use the default drag mouse cursor on mouse-over a UIElement to indicate a control is draggable. The cursor that looks like an arrow and a FocusVisual rectangle with an overlapping plus ...
2
votes
1answer
347 views

How to drag item out from Iframe and drop onto parent

I have a folder tree view on the left page which was in a tag, left page was the iframe container which contain the file list, when I want to drag the files out from the iframe, I got a headache. no ...
2
votes
1answer
2k views

What is the purpose of WCF reliable session?

The documentation around this topic is poor. I use WCF services with NetTcpBinding hosted in Windows service. The problem is that a session is dropped when it is inactive for some time. What I need is ...
2
votes
1answer
3k views

editable dropdown in jquery

i have a requirement where in the name of the patient will be searched by the doctor ..there may be multiple patients with same name also..so when he starts searching he must get a drop down of all ...
2
votes
4answers
936 views

DROP TABLE fails for temp table

I have a client application that creates a temp table, the performs a bulk insert into the temp table, then executes some SQL using the table before deleting it. Pseudo-code: open connection begin ...
2
votes
0answers
139 views

Adobe AIR system tray drop target

I would like to make a system tray icon from Adobe AIR app a drop target. Is this even possible ? Digging hard, but without success so far. Thanks
2
votes
2answers
530 views

How to trigger drop in jQuery?

$(item).droppable({ drop: function(event, ui) { console.log("triggered"); } }); I try to call drop by $(item).trigger("drop", [{},{draggable : $(target_item)}]); ...

1 2 3 4 5 7