Tagged Questions
The dml tag has no wiki summary.
3
votes
2answers
96 views
TSQL 2005, XML DML - Update Two Values at once?
Is there any way to combine these two replace values with 1 update statement?
UPDATE dbo.MyTable
SET MyXmlColumn.modify('replace value of (/node/@att1)[1] with "1"')
WHERE id = 1
UPDATE dbo.MyTable
...
3
votes
2answers
217 views
Pattern to substitute for MERGE INTO Oracle syntax when not allowed
I have an application that uses the Oracle MERGE INTO... DML statement to update table A to correspond with some of the changes in another table B (table A is a summary of selected parts of table B ...
3
votes
2answers
222 views
Why is PL/SQL Bulk DML running slowing for large datasets with parent-child constrained tables?
I have been trying to figure out why this PL/SQL purge script runs slowly for datasets where the record table has a a few hundred thousand or more records. Prior to script execution, a certain subset ...
3
votes
2answers
3k views
Combine stored procedure and query in T-SQL
What ways are there to combine executing of a stored procedure and using it's result or parameters in a regular SQL query? Or not supported yet but planned in future versions of SQL Server. I'm afraid ...
3
votes
2answers
2k views
mysql @@identity vs sql-server last_insert_id()
Am I correct in understanding that mysql's LAST_INSERT_ID() function doesn't reset between insert attempts (as @@identity does in sql-server)... that if the immediately preceding insert operation ...
2
votes
2answers
30 views
How can I stop a managed trigger from executing while running a test class?
Usually, when a trigger runs, we check what kind of a profile the user has, and if it's the kind where we don't want the triggers to run, then we exit the trigger before running any other code.
...
2
votes
2answers
165 views
DDL to define denormalization rules?
I've been doing the relational database thing for years now, but lately have moved into Cassandra/Redis territory. NoSQL makes sense for what we're doing, so that's fine.
As I was working through ...
2
votes
3answers
422 views
Can I see the DML inside an Oracle trigger?
Is it possible to see the DML (SQL Statement) that is being run that caused a trigger to be executed?
For example, inside an INSERT trigger I would like to get this:
"insert into myTable (name) ...
2
votes
2answers
173 views
Update primary key from table in another database
I have two identical tables in two different databases with the same data but they have different primary keys, I need to update these so they have the same key, so what I did was making sure that ...
2
votes
4answers
829 views
MySQL Bug? “SHOW TABLE STATUS” Reports Fluxuating Number of Rows During Import
I'm importing 4.1mil records into an offline system to do some analysis on a subset of our database. As I'm running the import, I'm trying to check its progress by using:
SHOW TABLE STATUS LIKE ...
2
votes
4answers
2k views
SQL Server Trigger switching Insert,Delete,Update
Hello is possible to switch between DML commands/operations (Insert,Delete,Update) on Trigger Body?, I try to snippet some T-SQL for understand me better :
CREATE TRIGGER DML_ON_TABLEA
ON TABLEA
...
2
votes
1answer
917 views
Is using a SELECT inside a pipelined PL/SQL table function allowed?
The docs for pipelined functions say that DML is not allowed when they are used in a SQL statement (typically a SELECT), and in most examples the pipelined functions are used for data generation or ...
1
vote
1answer
46 views
How to insert data into database from wavemaker
I want to insert data from wavemaker into database which will be inserted by user at runtime. But didnt get yet how to do it in wavemaker.
Can anyone please suggest me a simple example of it?
1
vote
1answer
45 views
Oracle Audit - DDL/DML not on. System Events on. How to turn all on?
Afternoon everyone,
I currently have a Oracle DB issue. I have Oracle Auditing on (AUDIT_TRAIL set to db). However the only information being captured is the System Events (log on, off).
From the ...
1
vote
2answers
47 views
Fetching column values based on SYSDATE
I have a table wchih has 2 columns. The definition is
CREATE TABLE LOGGING_T
(
TSTAMP DATE,
LINE VARCHAR2(300)
)
TABLESPACE OPERATIONS
MONITORING
/
The colulmn TSTAMP has values like ...
1
vote
1answer
35 views
Questions related to efficient DML in procedure/functions
I have 2 questions regarding performance of PL/SQL script when executing DML. Ofcourse the EXECUTE IMMEDIATE is the slowest one thats why we have forall, bulk insert etc. My Questions are
I have to ...
1
vote
2answers
51 views
MySQL 5.5 add foreign key fails with errors [HY000][150] and [HY000][1005]
I have tried adding a foreign key like this...
ALTER TABLE OrderLineItem
ADD CONSTRAINT
FK_OrderLineItem_ShippingType_name FOREIGN KEY
(shippingType)
REFERENCES ShippingType(name);
Or like ...
1
vote
2answers
102 views
Selecting all columns and constant value from Oracle table
How can I select all columns and add a column with a constant value in Oracle?
With MS SQL Server, I can use:
Select *,5 From TableA;
I will get this:
column1 column2 5
xx xx ...
1
vote
1answer
86 views
Tool to auto generate DML stored procedures for all the tables in my Scheama -MySQL
I was looking for a tool which can can auto-generate the DML stored procedures(Insert, Update, Delete, Select) for MySQL database from the schema.
Any help?
1
vote
4answers
73 views
Oracle - How does Oracle manage transaction specific DML statements
Imagine I have this simple table:
Table Name: Table1
Columns: Col1 NUMBER (Primary Key)
Col2 NUMBER
If I insert a record into Table1 with no commit...
INSERT INTO Table1 (Col1, ...
1
vote
1answer
82 views
Slow repetitive execution of DDL and DML statements using JDBC
For integration tests running against 11 different RBDMS for a database abstraction library, I need to frequently reset the schema and/or data. This means, I run plenty of statements for most ...
1
vote
1answer
88 views
SQL Server 2008 - complex Insert Trigger
I`m not a SQL programmer, but I have encountered an obstacle during my project and have to construct a trigger, which will fire after insert command. The problem is as follows:
I have 3 tables:
...
1
vote
1answer
71 views
Oracle SQL- column value being not distinct as criteria
I'm having trouble formulating a SQL statement to return the values I want. I need to select data based on user ID, a second column's value, and a third columns value where the values in that column ...
1
vote
2answers
104 views
Perceiving objects accessed/updated by DML in Oracle
I'm implementing the dependency system for changes in our DB, so eg for this and this change we need that and that object in such and such state. With DDL dependencies it's easy, but i need to know, ...
1
vote
3answers
85 views
Diff two tables in SQL Server and generate DML to adjust the one
I have two tables; one is an older version of the second. I'd like to add the fields from the new one to the second one. Is there an easy way to do this without manually parsing out the fields (there ...
1
vote
2answers
2k views
How to copy an inserted,updated,deleted row in a SQL Server trigger(s)
If a user changes table HelloWorlds, then I want 'action they did', time they did it, and a copy of the original row insert into HelloWorldsHistory.
I would prefer to avoid a separate triggers for ...
1
vote
3answers
274 views
Oracle: update a column in table a from values in other tables
I'm trying to support multiple databases for an app that I'm writing. The app mostly uses Hibernate, but it's incredibly inefficient to iterate over millions of rows and process them individually ...
1
vote
1answer
173 views
Update String Columns without Using Single Quotations - General Question
UPDATE CustomerPhone
SET PhoneTypeID = 7, PhoneNumber = 999-444
WHERE CustomerID = 500 AND PhoneNumber = 9-1-1;
PhoneNumber is of type varchar(20) whereas PhoneTypeID and CustomerID are of type ...
1
vote
2answers
179 views
1
vote
2answers
284 views
Is there a good reference card that compares T-SQL and PL/SQL side-by-side?
I'm looking for a good reference card / cheat sheet that compares T-SQL and PL/SQL data manipulation language commands side-by-side.
I've previously searched SO but there isn't any older thread ...
0
votes
1answer
46 views
Dummy updates of Salesforce database records and execution governors
I need to trigger updates of a whole bunch of records in a Salesforce database without really updating any values. This is to make a few formulas to recalculate some fields.
Here's what I tried - a ...
0
votes
0answers
13 views
Is it possible to make Hibernate DML statements to include return/output clause
Both SQLServer and Oracle have ability to return new values into client application (OUTPUT and RETURN clause respectively) after executing DML statements. Is it possible somehow to use these values ...
0
votes
0answers
105 views
deploying java web service on glassfish
I want to create a web service which can access(insert/delete/select) values in oracle db using a java web servie.
I created a basic web service which gets values from the database
I was able to ...
0
votes
1answer
33 views
XML DML for SQL Server 2008
I have an xml column ExportTemplate in a table that holds an xsl template that I need to modify.
When I use the the query below, the server notifies that 1 row is affected but when I check the ...
0
votes
5answers
104 views
How to enter new line using sql command INSERT
Q:
I wanna to know the syntax of SQL query of inserting new line in my table.
I mean ,I wanna to enter the following in my table abc:
aaaaaaaaaa
bbbbbbbbbb
cccccccccccc
Maintaining the ...
0
votes
1answer
65 views
Using Behat 2.0, Where should i put my steps?
You can implement step definitions for undefined steps with these snippets:
/**
* @Given /^people enter (\d+)$/
*/
public function peopleEnter($argument1)
{
throw new Pending();
}
Should I ...
0
votes
0answers
18 views
do you need special server/software to run .dml extension?
Ok do you need anything special to run Data Manipulation Language (DML) .dml? Or would typical host support Data Manipulation Language out of the box?
0
votes
0answers
54 views
Supply additional data for use in DML trigger [closed]
Possible Duplicate:
Regarding SQL Server delete trigger
I am writing a trigger which audits changes to rows in a table by inserting rows in a table called Audit.
The Audit table contains ...
0
votes
2answers
84 views
Dependent insert statements
I have a table with data about a customer, Customer(name, address), with rows like "John Doe", "Some Street 123". For each row in the table, I want to insert one row in the Person(id, name) table and ...
0
votes
3answers
180 views
SQL Server MERGE command - how to trap if nothing qualified
With this command, we can specify something like:
WHEN MATCHED AND stm.StudentMarks > 250 THEN DELETE
But how do we trap if a record didn't qualify? For example, say stm.StudentMarks = 100? I ...
0
votes
2answers
162 views
DML operation with out logging - SQL Server
Is there any way that we can do DML operation with out logging it into log file?
For example, when I am inserting a row in database, this operation will be logged in log file irrespective of using ...
0
votes
2answers
103 views
Adding constraints is DDL or DML
Adding constraints in sql server comes under which category DML or DDL?
0
votes
1answer
419 views
Code to generate SQL Server table schema from ADO.NET
I'd quite like to use ADO.NET to generate a CREATE TABLE script to create an exact copy of a given table.
The reason for this is persistence testing. I would like to know whether my application will ...
0
votes
2answers
68 views
Can I put update or create statements in from clause in DB2?
Can I use DML in from clause in DB2? thank you
0
votes
1answer
2k views
Generating MySQL UPDATE statements containing BLOB image data
I'm trying to write an SQL statement that will generate an SQL script that will update a BLOB field with an IMAGE being selected from the database.
This is what I have:
select concat( 'UPDATE ...
0
votes
1answer
246 views
DDL statements against deleted inserted in DML trigger
I am trying to find impact of doing DDL statement against deleted and inserted logical tables inside table trigger. I have:
CREATE TRIGGER [Trigger52]
ON [dbo].[Table1]
FOR DELETE, INSERT, UPDATE
AS ...
0
votes
5answers
106 views
Terminology: DML “that modifies things”
I understand that DML technically encompasses SQL verbs which merely query but do not modify persistent data. (See, e.g., wikipedia or oracle or orafaq)
However, I often wish to refer to "all and ...
0
votes
5answers
283 views
SQL Server: Extracting a Column Into a Table
I have a table with a column that I want to extract out and put into a separate table.
For example, lets say I have a table named Contacts. Contacts has a column named Name which stores a string. Now ...
0
votes
3answers
628 views
Unit testing DDL statements that need to be in a transaction
I am working on an application that uses Oracle's built in authentication mechanisms to manage user accounts and passwords. The application also uses row level security. Basically every user that ...
0
votes
1answer
227 views
What's the PostgreSQL equivalent of MSSQL's CONTEXT_INFO?
In relation to my other question "What’s the best way to audit log DELETEs?". What's the PostgreSQL equivalent of CONTEXT_INFO?
[EDIT]
I want to log deletes using trigger, but since i'm not using ...