0
votes
4answers
32 views
SQL Copy Row for a list, change one column value
I need to duplicate a row a couple thousand times. I need to change one column from the copied row based on a list of ids.
Psuedo-code:
INSERT INTO MyTable (TabID, Other Columns) …
1
vote
1answer
41 views
Linq to SQL - retrieve object, modify, submitchanges creates new objects
I've been battling this for a while. I'm trying to implement a many to one association. I have a bunch of rows in a table, called readings. These accumulate over time, and every no …
0
votes
3answers
49 views
iphone core data inserting new objects question
Hi,
I have been reading through the core data documentation and feel I am still missing something.
I do not quite understand how you insert objects into a relationship of another …
0
votes
2answers
33 views
Copy mdf file and use it in run time
After I copy mdf file (and his log file) I tries to Insert data.
I receive the following message:
"An attempt to attach an auto-named database for file [fileName].mdf failed. A da …
1
vote
1answer
69 views
mySQL - Table locking vs Row locking
Application Description
I have a table which stores id's which represent area's on a map. Each map contains 1000 areas. A territory is any number of area's of a map that are touch …
1
vote
3answers
65 views
mySQL - Prevent double booking
I am trying to work out the best way to stop double 'booking' in my application.
I have a table of unique id's each can be sold only once.
My current idea is to use a transaction …
0
votes
3answers
48 views
How can I insert data without specifying a value for a non auto-increment primary key?
I have this table:
CREATE TABLE Persons
(
P_Id int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255),
PRIMARY KEY (P_Id)
)
…
0
votes
3answers
44 views
mySQL - Insert into three tables
I recently asked this question.
I have a relational database with three tables. The first containts id's
that relate to the second. The second
contains id's that r …
1
vote
4answers
73 views
Using uniqueidentifier as Primary Key and inserting it from the client application using parameterized queries.
I have created a database where I use uniqueidentifier as the primary key. I'm trying to run a parametrized query that in the end looks like this. (insert into someTable (uniqueID …
0
votes
4answers
62 views
Help with insert trigger
hey
i have a temp table (question_desc, ans1, ans2, ans3, ans4, correct_ans, marks) with say 10 entries
from this table i have to insert values in two other tables
questions (q_ …
1
vote
4answers
151 views
jquery insert html into list before a child ul-tag
Hello
I have this:
<ul id="pickme">
<li>1</li>
<li>2</li>
<li>3
<ul>
<li>3-1</li>
</ul& …
0
votes
6answers
71 views
create/append node vs innerHTML
Does anyone have a good reason to use one over the other? As far as I can tell, create/append node simply prevents you from creating invalid code, while innerHTML allows you to inj …
0
votes
2answers
66 views
MySQL INSERT INTO / ON DUPLICATE KEY with SELECT statement issue
Howdy - I'm a MySQL Noob. I have a table of various business listings and I am trying to populate a second table called cities that contains unique city names along with a count of …
0
votes
1answer
48 views
Insert value into SQL Server
I want to insert value into SQL Server but there is problem is I pass both value in parameter then it's not insert otherewise if i selecting one value then it's insert my database …
1
vote
3answers
55 views
php mysql_insert_id on multiple rows?
Hi,
Is it possible to get the auto incremented ids from a query which inserts multiple rows?
eg:
INSERT INTO table (col1, col2) VALUES (1, 2), (3, 4), (5, 6);
Alteratively, is th …
