0
votes
6answers
45 views
How to Insert Records based on the Previous Insert?
PROCEDURE add_values
AS
Begin
Insert into TableA
Select id,name from TableC ("This selection will return multiple records")
While it inserts in TableA i would like insert …
0
votes
1answer
38 views
Default values in Insert Select in SQL
How to pass default values in the Insert Select construction in SQL?
I have a table:
create table1 (field1 int, field2 int, field3 int default 1337)
create table2 (field1 int, field2 int)
…
0
votes
1answer
12 views
Insert using linq templates not returning the id - MySQL
I'm using the latest subsonic dll and the latest linq templates from github. The db i'm inserting into is MySQL. Id column on table is primary key auto increment.
Versions:
Subsonic.Core.dll - …
0
votes
3answers
25 views
How to use variable in target database name for insert statement?
I want to declare a server name and use this name in an insert statement. So far all i got is an error message.
declare @machine nvarchar(6);
declare @bar nvarchar(3);
set @machine = 'Name00';
set …
1
vote
2answers
64 views
Python MySQLdb: Update if exists, else insert
I am looking for a simple way to query an update or insert based on if the row exists in the first place. I am trying to use Python's MySQLdb right now.
This is how I execute my query:
…
0
votes
3answers
43 views
SQL: insert as 1 query with all fields, or multiple queries?
So I have a question regarding the best practice for a PHP page inserting a new row into a table. There are some required fields (aka NOT NULL) and some optional fields (can be NULL). Is it better …
0
votes
1answer
21 views
How to insert a image under the text as a pdf background using iText ?
I need some sample code to insert a image as a pdf background, is there any this kind of sample code ?
and I have wrote the text well, then i need to insert a image under the text.
2
votes
6answers
140 views
Which is faster: multiple single INSERTs or one multiple-row INSERT?
I am trying to optimize one part of my code that inserts data into MySQL. Should I chain INSERTs to make one huge multiple-row INSERT or are multiple separate INSERTs faster?
0
votes
5answers
52 views
Why would bulk Inserts cause an ASP.net application to become Unresponsive?
Setup: ASP.net 3.5, Linq-to-Sql. Separate Web and DB servers (each 8-core, 8GB RAM). 4 databases. I am running an insert operation with a few million records into DB4 (using Linq-to-Sql for now, …
0
votes
5answers
55 views
Automatically match columns in INSERT INTO … SELECT … FROM …
Hi!
SQL Server question.
When doing
INSERT INTO T1 SELECT (C1, C2) FROM T2
I don't want to specify column names of T1 because they are the same as in T2
Is it possible to do so?
Currently I'm …
-3
votes
0answers
34 views
insertonsubmit query please help?
Hello All,
we use insertonsubmit in the option of linq to sql classes but I want that what shall I use in the entity data model option please tell me its very urgent.
Thanks
Ritz
0
votes
4answers
37 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)
VALUES (TabID = …
1
vote
2answers
56 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 now and then I want to …
0
votes
2answers
39 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 database with the same …
0
votes
3answers
63 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 object.
For …
