User tuinstoel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T20:43:35Zhttp://stackoverflow.com/feeds/user/43901http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1835391/pivoting-sqlite-table-setwise-like-sql-should-be/1847034#18470340Answer by tuinstoel for Pivoting SQLite table, setwise like SQL should betuinstoel2009-12-04T13:44:29Z2009-12-04T13:44:29Z<p>I would first do your query</p>
<pre><code>SELECT COUNT(*),
name,
strf("%W:%Y", time, "unixepoch")
FROM events
GROUP BY strf("%W:%Y", time, "unixepoch"), name
ORDER BY time
</code></pre>
<p>and then do post processing with python. </p>
<p>So you don't have to iterate over 224,000 rows but over 6,000 rows. You can easyly store those 6,000 rows in memory (for processing with Python). I think you can store 224,000 rows in memory too but it takes quite a lot more memory. </p>
<p>However: New versions of sqlite support the aggregation function group_concat. Maybe you can use this function for pivoting with SQL? I can't try because I use an older version. </p>
http://stackoverflow.com/questions/1845978/sqllite-not-inserting-into/1846771#18467710Answer by tuinstoel for SQLLite not inserting intotuinstoel2009-12-04T12:49:10Z2009-12-04T12:49:10Z<p>You should always use transactions and parameterized statements when using sqlite, else the performance will be very slow. </p>
<p>Read here: <a href="http://stackoverflow.com/questions/1711631/how-do-i-improve-the-performance-of-sqlite">http://stackoverflow.com/questions/1711631/how-do-i-improve-the-performance-of-sqlite</a></p>
<p>Your approach is vulnerable to sql injection too. A message in an email can have a piece of sql in its body and your code will execute this piece of sql. You can also run into problems when the message in your string values contains a " or a ' . </p>
http://stackoverflow.com/questions/1846074/oracle-database-table-insertion/1846664#18466640Answer by tuinstoel for Oracle database table insertiontuinstoel2009-12-04T12:29:03Z2009-12-04T12:29:03Z<pre><code>create sequence entrySeq;
create table Entry(id number(3), name varchar(50));
insert into Entry value (entrySeq.nextval, 'MyName');
</code></pre>
<p>(You don't need a trigger). </p>
<p>A sequence returns a unique and increasing number value but Oracle doesn't guarantuee that it is gapless. When sometimes transactions are rollbacked the values of column id will contain gaps. </p>
http://stackoverflow.com/questions/1840538/faster-alternative-in-oracle-to-select-count-from-sometable/1842942#18429422Answer by tuinstoel for Faster alternative in Oracle to SELECT COUNT(*) FROM sometabletuinstoel2009-12-03T21:10:29Z2009-12-03T21:10:29Z<p>You can create a fast refresh materialized view to store the count.</p>
<p>Example:</p>
<pre><code>create table sometable (
id number(10) not null primary key
, name varchar2(100) not null);
create materialized view log on sometable with rowid including new values;
create materialized view sometable_count
refresh on commit
as
select count(*) count
from sometable;
insert into sometable values (1,'Raymond');
insert into sometable values (2,'Hans');
commit;
select count from sometable_count;
</code></pre>
<p>It will slow mutations on table sometable a bit but the counting will become a lot faster. </p>
http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered/1837761#18377610Answer by tuinstoel for Are the days of the stored procedure numbered?tuinstoel2009-12-03T05:01:22Z2009-12-03T05:01:22Z<p>Let's take a look at the new kids on the block...</p>
<p>MongoDB for instance has support for stored procs (you code them in JavaScript), they are called <em>stored server-side functions</em> in the manual. See <a href="http://www.mongodb.org/display/DOCS/Server-side+Code+Execution" rel="nofollow">http://www.mongodb.org/display/DOCS/Server-side+Code+Execution</a> .</p>
<p>If you use the in-memory OLTP database H-store you have to call a stored proc, you can't do it otherwise. Every call to a stored proc is one trancaction. You have to code those stored procs in C++ but in the future it will probably be Ruby. <a href="http://www.vldb.org/conf/2007/papers/industrial/p1150-stonebraker.pdf" rel="nofollow">http://www.vldb.org/conf/2007/papers/industrial/p1150-stonebraker.pdf</a></p>
<p>MapReduce is all about bringing the code to the data instead of bringing the data to the code so it is basically uses 'stored procs' that you can write in a lot of languages like Java or Python. The amounts of data that are processed in a MapReduce-system is massive so it is much faster to process the data local. </p>
<p>Aster Data focuses more and more on pushing the application logic into the MPP environment because pulling data from the database to the application layer takes too much time. </p>
<p>I don't think that stored procs are dead. I just think that the programming languages will change, no longer T-SQL or PL/SQL but Python, Ruby, C# or Java. </p>
http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered/1835977#18359770Answer by tuinstoel for Are the days of the stored procedure numbered?tuinstoel2009-12-02T21:35:05Z2009-12-02T21:35:05Z<p>I hope that one day JIT compilers are smart enough to decide where a piece of code should run. Bring the data to the code or the code to the data? The JVM and the Common Language Runtime should decide and choose the best performing option for each piece of code. We devs don't have to know. A little bit like Microsoft Volta. I know that Microsoft Volta is offline but I still like the idea. </p>
http://stackoverflow.com/questions/1834112/oracles-collect-function-creates-new-collection-data-type-with-random-name/1835336#18353361Answer by tuinstoel for Oracle's COLLECT function creates new collection data type with random nametuinstoel2009-12-02T19:47:08Z2009-12-02T19:47:08Z<p>Read <a href="http://www.oracle-developer.net/display.php?id=306" rel="nofollow">http://www.oracle-developer.net/display.php?id=306</a> </p>
<p>I think it will work when you define:</p>
<p>CREATE OR REPLACE TYPE ARRAY_TEST_T AS Table OF TEST_T;</p>
<p>So no varray(200) of ... but table of... . </p>
http://stackoverflow.com/questions/1830721/horizontal-database-and-vertical-database/1830803#18308032Answer by tuinstoel for Horizontal Database and Vertical Databasetuinstoel2009-12-02T05:21:32Z2009-12-02T05:21:32Z<p>I assume you use a relational database like Mysql, Ms sql, Sqlite, Postgresql or Oracle for storage? </p>
<p>Gedcom is a standard for information exchange so you know how many columns you will have. Maybe the standard is extended with new properties in the future but it probably wont be a lot of new properties. You can easily extend a table with a few new columns. </p>
<p>I would use a 'horizontal' table and not a entity-attribyte-value-system (vertical table). Vertical table systems tend to be slow. They can't be properly indexed and confuse the query optimizer. </p>
<p>It becomes a different story when your users can define new properties in their profiles like eye colo(u)r or favourite colo(u)r themselves. How flexible do you want those profiles to be? </p>
http://stackoverflow.com/questions/1814716/going-live-with-a-project-with-no-bugs-generation/1814766#18147660Answer by tuinstoel for Going live with a project with no bugs generationtuinstoel2009-11-29T05:43:21Z2009-11-29T05:43:21Z<p>Code reviews, unit testing, automatic integrating testing and manual testing. I'm sure you heard about it at your uni. </p>
http://stackoverflow.com/questions/1812049/performance-standalone-procedure-vs-packaged-procedure-in-oracle/1812085#18120853Answer by tuinstoel for Performance Standalone Procedure vs Packaged Procedure in Oracletuinstoel2009-11-28T09:28:56Z2009-11-28T09:28:56Z<p>There isn't a performance difference except that packages can have state and standalone procedures and functions not. </p>
<p>The use of package is more about ordening and grouping of code. You could see them as an alternative of namespaces. </p>
http://stackoverflow.com/questions/1793915/oracle-speeding-up-count/1812001#18120011Answer by tuinstoel for Oracle: speeding up count(*)?tuinstoel2009-11-28T08:41:46Z2009-11-28T08:41:46Z<p>You can use a fast refresh materialized view nested on another fast refresh materialized view . </p>
<p>(I insert sample data)</p>
<pre><code>create table bar (
last_modified_by varchar2(16),
asset_group_id number(10,0) not null enable,
folder varchar2(512) not null enable,
name varchar2(512) not null enable,
-- exta fields deleted
constraint bar_pk primary key (folder, name) enable
);
create index bar_asset_group_id on bar (asset_group_id desc) ;
create index bar_folder on bar (folder) ;
create index bar_kind on bar (kind) ;
insert into bar values ('deew',1,'A','B');
insert into bar values ('deew',1,'A','C');
insert into bar values ('deew',1,'B','C');
insert into bar values ('deew',2,'E','C');
commit;
create table foo (
created_date date not null enable,
asset_group_id number(10,0) not null enable,
keyword varchar2(4000) not null enable,
-- exta fields deleted
constraint foo_pk primary key (asset_group_id, keyword) enable
) enable row movement ;
insert into foo values (sysdate,1,'dd');
insert into foo values (sysdate,2,'dd');
insert into foo values (sysdate,3,'dd');
insert into foo values (sysdate,1,'ddE');
commit;
create index foo_created on foo (created_date desc) ;
create materialized view log on bar with rowid including new values;
create materialized view log on foo with rowid including new values;
create materialized view foobar_count_helper
refresh fast on commit
as
select f.rowid rowid_f
, b.rowid rowid_b
from foo f
, bar b
where f.asset_group_id = b.asset_group_id (+)
/
create materialized view log on foobar_count_helper with rowid including new values;
create materialized view foobar_count
refresh fast on commit
as
select count(*) count
from foobar_count_helper
/
</code></pre>
<p>Test results:</p>
<pre><code>SQL>
SQL>
SQL> select * from foobar_count;
COUNT
----------
8
SQL>
SQL> SELECT COUNT(*) AS COUNT
2 FROM foo f
3 LEFT JOIN bar b
4 ON (f.asset_group_id = b.asset_group_id)
5 where 1=1
6 /
COUNT
----------
8
</code></pre>
http://stackoverflow.com/questions/816055/graph-database-for-net/1805252#18052520Answer by tuinstoel for Graph database for .NETtuinstoel2009-11-26T19:11:29Z2009-11-26T19:11:29Z<p>Maybe this one: <a href="http://www.sones.com/home" rel="nofollow">http://www.sones.com/home</a> ? Haven't tried it myself. </p>
http://stackoverflow.com/questions/1779919/database-design-how-do-you-use-the-database-to-confirm-complete-data-entry-and/1779978#17799780Answer by tuinstoel for database design - how do you use the database to confirm complete data entry and validationtuinstoel2009-11-22T20:58:40Z2009-11-23T19:40:58Z<p>Do you use Oracle? </p>
<p>If you use Oracle you can validate the data in a declarative way with the use of a fast refresh materialized view, you have to add a check constraint to this materialized view. This means that the validation will be done when a commit is happening. </p>
<p><strong>Edit1</strong></p>
<p>It saddens me a little that oo didn't anwer my imho really very simple question, so I don't know whether or not he/she uses Oracle, but anyway:</p>
<p>Let's create a table with a materialized view log, a materialized view with a group by on resourceid and a check constraint to check that the sum of PctOfTime equals 100 for every resourceid. </p>
<pre><code>create table applicationresources
(
id number(10) not null primary key,
applicationid number(10) not null,
resourceid number(10) not null,
pctoftime number(3) not null
);
create materialized view log on applicationresources
with rowid (id,applicationid,resourceid,pctoftime) including new values;
create materialized view pctoftimecheck
refresh fast on commit
as
select sum(pctoftime) sum_time,resourceid
from applicationresources
group by resourceid
/
alter table pctoftimecheck add constraint c1 check(sum_time=100);
</code></pre>
<p>Now two examples:</p>
<p>Example1 (will succeed):</p>
<pre><code>insert into applicationresources values (1, 1, 1, 50);
insert into applicationresources values (2, 2, 1, 50);
commit;
</code></pre>
<p>Example2 (will fail on commit because sum=101)</p>
<pre><code>insert into applicationresources values (3, 1, 2, 50);
insert into applicationresources values (4, 2, 2, 50);
insert into applicationresources values (5, 3, 2, 1);
commit;
SQL> Error: ORA-02290: CHECK-constraint (DSEDD.C1) violated.
</code></pre>
<p>See for more info: <a href="http://rwijk.blogspot.com/2009/06/fast-refreshable-materialized-view.html" rel="nofollow">http://rwijk.blogspot.com/2009/06/fast-refreshable-materialized-view.html</a></p>
http://stackoverflow.com/questions/1758453/oracle-lab-db-design-pipeline-functions/1758531#17585312Answer by tuinstoel for Oracle Lab DB Design (Pipeline Functions?)tuinstoel2009-11-18T19:42:15Z2009-11-18T20:49:58Z<p>You want to select master data and detail data with one select statement? Try select ..cast..mulitiset. See here: <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/operators006.htm" rel="nofollow">http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/operators006.htm</a> </p>
<p><strong>EDIT1</strong></p>
<p>The OP seems to want a pipelined function. You can use a cursor as in-parameter of a pipelined function. Pipelined function are very flexible. See here: <a href="http://download.oracle.com/docs/cd/B19306%5F01/appdev.102/b14261/tuning.htm#sthref2345" rel="nofollow">http://download.oracle.com/docs/cd/B19306%5F01/appdev.102/b14261/tuning.htm#sthref2345</a></p>
http://stackoverflow.com/questions/1743027/what-is-the-best-way-to-write-a-validation-layer-for-sqlite/1758130#17581303Answer by tuinstoel for What is the best way to write a validation layer for SQLitetuinstoel2009-11-18T18:38:23Z2009-11-18T18:38:23Z<p>You can add column constraints. </p>
<pre><code>create table example
(
age integer not null check (typeof(age)='integer'),
name text not null check (length(name) between 1 and 100),
salary integer check (salary is null or typeof(salary)='integer')
)
</code></pre>
http://stackoverflow.com/questions/1609637/is-it-possible-to-insert-multiple-rows-at-a-time-in-an-sqlite-database/1734110#17341100Answer by tuinstoel for Is it possible to insert multiple rows at a time in an SQLite database?tuinstoel2009-11-14T12:26:26Z2009-11-14T12:26:26Z<p>You can't but I don't think you miss anything. </p>
<p>Because you call sqlite always in process, it almost doesn't matter in performance whether you execute 1 insert statement or 100 insert statements. The commit however takes a lot of time so put those 100 inserts inside a transaction. </p>
<p>Sqlite is much faster when you use parameterized queries (far less parsing needed) so I wouldn't concatenate big statements like this:</p>
<pre><code>insert into mytable (col1, col2)
select 'a','b'
union
select 'c','d'
union ...
</code></pre>
<p>They need to be parsed again and again because every concatenated statement is different. </p>
http://stackoverflow.com/questions/1715978/how-to-use-an-oracle-associative-array-in-a-sql-query/1731121#17311210Answer by tuinstoel for How to use an Oracle Associative Array in a SQL querytuinstoel2009-11-13T18:51:42Z2009-11-13T18:51:42Z<p>See here for a similar problem + similar solution: <a href="http://stackoverflow.com/questions/1625649/oracle-parameters-with-in-statement/1655743#1655743">http://stackoverflow.com/questions/1625649/oracle-parameters-with-in-statement/1655743#1655743</a> </p>
http://stackoverflow.com/questions/1729739/oracle-pl-sql-tips-for-immediate-output-console-printing/1731084#17310841Answer by tuinstoel for Oracle PL/SQL - tips for immediate output / console printingtuinstoel2009-11-13T18:43:15Z2009-11-13T18:43:15Z<p>An alternative is to use a pipelined function that returns your logging information. See here for an example: <a href="http://berxblog.blogspot.com/2009/01/pipelined-function-vs-dbmsoutput.html" rel="nofollow">http://berxblog.blogspot.com/2009/01/pipelined-function-vs-dbmsoutput.html</a> When you use a pipelined function you don't have to use another SQLPLUS/Toad/sql developer etc... session.</p>
http://stackoverflow.com/questions/1724381/explaining-why-just-add-another-column-to-the-db-is-a-bad-idea-to-non-programm/1724537#17245371Answer by tuinstoel for Explaining why "Just add another column to the DB" is a bad idea, to non programmers.tuinstoel2009-11-12T18:57:34Z2009-11-12T18:57:34Z<p><em>...I tell them I can create a system of tables that allows each client to define thier own set of custom fields, but of course that takes more time and money....</em></p>
<p>Looks like you want to build some kind of generic data model? Entity-attribute-value...? </p>
<p>Those generic models are often real slow, they can't be indexed properly and confuse the query optimizer. It is often better to just add some columns. </p>
<p>Do some very thorough benchmarking before going the generic road. </p>
<p>Maybe it is db vendor dependent but if you use Oracle, I would prefer the 'just add some columns' road above the entity-attribute-value-road. </p>
http://stackoverflow.com/questions/1625649/oracle-parameters-with-in-statement/1655743#16557430Answer by tuinstoel for Oracle Parameters with IN statement?tuinstoel2009-10-31T22:05:47Z2009-10-31T22:05:47Z<p>You can use an Oracle collection of numbers as a parameter (bind variable) when you use ODP.NET as dataprovider. This works with Oracle server 9, 10 or 11 and ODP.net release >= 11.1.0.6.20 . </p>
<p>A similar solution is possible when you use Devart's .NET dataprovider for Oracle. </p>
<p>Let's select the contracts with contractnum's 3 and 4. </p>
<p>We have to use an Oracle type to transfer an array of contract numbers to our query. </p>
<p><code>MDSYS.SDO_ELEM_INFO_ARRAY</code> is used because if we use this already predefined Oracle type we don't have to define our own Oracle type. You can fill <code>MDSYS.SDO_ELEM_INFO_ARRAY</code> with max 1048576 numbers. </p>
<pre><code>using Oracle.DataAccess.Client;
using Oracle.DataAccess.Types;
[OracleCustomTypeMappingAttribute("MDSYS.SDO_ELEM_INFO_ARRAY")]
public class NumberArrayFactory : IOracleArrayTypeFactory
{
public Array CreateArray(int numElems)
{
return new Decimal[numElems];
}
public Array CreateStatusArray(int numElems)
{
return null;
}
}
private void Test()
{
OracleConnectionStringBuilder b = new OracleConnectionStringBuilder();
b.UserID = "sna";
b.Password = "sna";
b.DataSource = "ora11";
using (OracleConnection conn = new OracleConnection(b.ToString()))
{
conn.Open();
using (OracleCommand comm = conn.CreateCommand())
{
comm.CommandText =
@" select /*+ cardinality(tab 10) */ c.* " +
@" from contract c, table(:1) tab " +
@" where c.contractnum = tab.column_value";
OracleParameter p = new OracleParameter();
p.OracleDbType = OracleDbType.Array;
p.Direction = ParameterDirection.Input;
p.UdtTypeName = "MDSYS.SDO_ELEM_INFO_ARRAY";
//select contract 3 and 4
p.Value = new Decimal[] { 3, 4 };
comm.Parameters.Add(p);
int numContracts = 0;
using (OracleDataReader reader = comm.ExecuteReader())
{
while (reader.Read())
{
numContracts++;
}
}
conn.Close();
}
}
}
</code></pre>
<p>The index on contract.contractnum isn't used when one omits hint /*+ cardinality(tab 10) */. I assumed contractnum is the primary key so this column will be indexed. </p>
<p>See also here: <a href="http://forums.oracle.com/forums/thread.jspa?messageID=3869879#3869879" rel="nofollow">http://forums.oracle.com/forums/thread.jspa?messageID=3869879#3869879</a> </p>
http://stackoverflow.com/questions/1647028/how-can-i-update-a-long-datatype-in-oracle/1651739#16517390Answer by tuinstoel for How can I update a 'long' datatype in Oracle?tuinstoel2009-10-30T19:07:06Z2009-10-30T19:07:06Z<p>Here 4 ways are explained how to convert the long column to a clob. Online redefinition is possible. </p>
<p><a href="http://arjudba.blogspot.com/2008/06/how-to-convert-long-data-type-to-lob.html" rel="nofollow">http://arjudba.blogspot.com/2008/06/how-to-convert-long-data-type-to-lob.html</a> </p>
http://stackoverflow.com/questions/1626636/connecting-c-to-oracle/1626701#16267012Answer by tuinstoel for Connecting C# to Oracletuinstoel2009-10-26T19:01:01Z2009-10-26T19:01:01Z<p>I think odbc is too slow. System.Data.OracleClient is a bit slow too and it will be depricated by Microsoft. </p>
<p>You could use devart's provider, there is a free version. It is easy to deploy. See here <a href="http://www.devart.com/dotconnect/oracle/" rel="nofollow">http://www.devart.com/dotconnect/oracle/</a> It does support the entity framework. </p>
<p>Odp.net is fast but it doesn't support the entity framework and it isn't very easy to deploy. </p>
http://stackoverflow.com/questions/1621206/3-tier-architecture-vs-2-tier-architecture/1621237#1621237-1Answer by tuinstoel for 3 Tier Architecture vs 2 Tier Architecturetuinstoel2009-10-25T15:53:51Z2009-10-25T15:53:51Z<p>Well if you have a website... You probably have some Javascript code, so that is once tier, you have your business logic in the server and you have the database to store things. That is three tiers in my opinion. Of course you could use stored procs in the database and skip the business logic tier so it is possible to build a website that with two tiers if you want to but if you don't want to use stored procs you will have three tiers. </p>
http://stackoverflow.com/questions/1614794/modify-pl-sql-statement-strings-in-c/1614858#16148581Answer by tuinstoel for Modify PL/SQL statement strings in C++tuinstoel2009-10-23T17:24:44Z2009-10-25T09:26:00Z<p>Maybe you can use this, it changes an select statement into an xml block:</p>
<pre><code>declare
cl clob;
begin
dbms_lob.createtemporary (
cl,
true
);
sys.utl_xml.parsequery (
user,
'select e.deptno from emp e where deptno = 10',
cl
);
dbms_output.put_line (cl);
dbms_lob.freetemporary (cl);
end;
/
<QUERY>
<SELECT>
<SELECT_LIST>
<SELECT_LIST_ITEM>
<COLUMN_REF>
<SCHEMA>MICHAEL</SCHEMA>
<TABLE>EMP</TABLE>
<TABLE_ALIAS>E</TABLE_ALIAS>
<COLUMN_ALIAS>DEPTNO</COLUMN_ALIAS>
<COLUMN>DEPTNO</COLUMN>
</COLUMN_REF>
....
....
....
</QUERY>
</code></pre>
<p>See here: <a href="http://forums.oracle.com/forums/thread.jspa?messageID=3693276&#3693276" rel="nofollow">http://forums.oracle.com/forums/thread.jspa?messageID=3693276&#3693276</a> </p>
<p>Now you 'only' need to parse this xml block. </p>
<p><strong>Edit1:</strong> </p>
<p>Sadly I don't fully understand the needs of the OP but I hope this can help (It is another way of asking the 'names' of the columns of for example query <code>select count(*),max(dummy) from dual</code>):</p>
<pre><code>set serveroutput on
DECLARE
c NUMBER;
d NUMBER;
col_cnt PLS_INTEGER;
f BOOLEAN;
rec_tab dbms_sql.desc_tab;
col_num NUMBER;
PROCEDURE print_rec(rec in dbms_sql.desc_rec) IS
BEGIN
dbms_output.new_line;
dbms_output.put_line('col_type = ' || rec.col_type);
dbms_output.put_line('col_maxlen = ' || rec.col_max_len);
dbms_output.put_line('col_name = ' || rec.col_name);
dbms_output.put_line('col_name_len = ' || rec.col_name_len);
dbms_output.put_line('col_schema_name= ' || rec.col_schema_name);
dbms_output.put_line('col_schema_name_len= ' || rec.col_schema_name_len);
dbms_output.put_line('col_precision = ' || rec.col_precision);
dbms_output.put_line('col_scale = ' || rec.col_scale);
dbms_output.put('col_null_ok = ');
IF (rec.col_null_ok) THEN
dbms_output.put_line('True');
ELSE
dbms_output.put_line('False');
END IF;
END;
BEGIN
c := dbms_sql.open_cursor;
dbms_sql.parse(c,'select count(*),max(dummy) from dual ',dbms_sql.NATIVE);
dbms_sql.describe_columns(c, col_cnt, rec_tab);
for i in rec_tab.first..rec_tab.last loop
print_rec(rec_tab(i));
end loop;
dbms_sql.close_cursor(c);
END;
/
</code></pre>
<p>(See here for more info: <a href="http://www.psoug.org/reference/dbms%5Fsql.html" rel="nofollow">http://www.psoug.org/reference/dbms%5Fsql.html</a>)</p>
<p>The OP also want to be able to change the schema name of the table in a query. I think the easiest say to achieve that is to query the table names from <code>user_tables</code> and search in sql statement for those table names and prefix them or to do a <code>'alter session set current_schema = ....'</code>. </p>
http://stackoverflow.com/questions/1616230/read-sql-file-in-resources-resx-and-create-tables-insert-rows-with-oracle-odp-ne/1617138#16171380Answer by tuinstoel for Read SQL File in Resources RESX and Create TAbles, Insert Rows with Oracle ODP.NETtuinstoel2009-10-24T06:12:53Z2009-10-24T06:12:53Z<p><a href="http://www.oracle.com/technology/obe/hol08/dotnet/getstarted-c/getstarted%5Fc%5Fotn.htm" rel="nofollow">http://www.oracle.com/technology/obe/hol08/dotnet/getstarted-c/getstarted%5Fc%5Fotn.htm</a> </p>
http://stackoverflow.com/questions/1617012/why-dont-the-mainstream-dbmss-have-graph-functionality/1617084#16170840Answer by tuinstoel for Why don't the mainstream DBMSs have graph functionality?tuinstoel2009-10-24T05:47:37Z2009-10-24T05:47:37Z<p>Oracle has support for graph functionality (Oracle Locator/Oracle Spatial) and semantic web functionality. </p>
http://stackoverflow.com/questions/1613408/is-use-of-dbmslob-necessary-when-returning-clob-from-pl-sql-procedure/1614952#16149520Answer by tuinstoel for Is use of DBMS_LOB necessary when returning CLOB from PL/SQL procedure?tuinstoel2009-10-23T17:43:27Z2009-10-23T17:43:27Z<p>I think you should measure the performance of both methods by running them many times in a loop. I think performance is the only difference. Your xml block is short but when you concatenate a big xml block it is faster to concatenate with dbms_low.writeappend than using ||. </p>
<p>(At least it was in Oracle 9, I believe the performance difference is smaller in Oracle 10.) </p>
http://stackoverflow.com/questions/1612094/are-these-examples-c-closures9Are these examples C# closures?tuinstoel2009-10-23T08:31:09Z2009-10-23T10:00:15Z
<p>I still don't quite understand what a <strong>closure</strong> is so I posted these two examples and I want to know whether these examples are both closures or not?</p>
<p><strong>Example A:</strong></p>
<pre><code>List<DirectoryInfo> subFolders = new List<DirectoryInfo>();
Action<string> FilterSubFoldersStartA =
s => subFolders.
AddRange((new DirectoryInfo(s)).GetDirectories().
Where(d => d.Name.StartsWith("A")));
FilterSubFoldersStartA(@"c:\tempa");
FilterSubFoldersStartA(@"c:\tempb");
</code></pre>
<p><strong>Example B:</strong></p>
<pre><code>List<DirectoryInfo> subFolders = new List<DirectoryInfo>();
string filter = "A";
Action<string> FilterSubFoldersStartGen =
s => subFolders.
AddRange((new DirectoryInfo(s)).GetDirectories().
Where(d => d.Name.StartsWith(filter)));
FilterSubFoldersStartGen(@"c:\tempa");
filter = "B";
FilterSubFoldersStartGen(@"c:\tempb");
</code></pre>
http://stackoverflow.com/questions/1598377/bulk-copy-from-sql-server-to-oracle/1602774#16027740Answer by tuinstoel for Bulk Copy from SQL Server to Oracletuinstoel2009-10-21T18:42:23Z2009-10-21T18:42:23Z<p>You can export your sql server data to a flat file or a comma separated file. You can use that flat file as an external table in Oracle. </p>
<p>An other solution is to create a database link from Oracle to sql server and to do 'select .. from ssss@db_link'. </p>
http://stackoverflow.com/questions/1580205/pl-sql-private-object-method/1580222#15802220Answer by tuinstoel for PL/SQL private object methodtuinstoel2009-10-16T20:27:46Z2009-10-16T20:27:46Z<p>You can't have private methods in pl/sql objects, you can have polymorphism and inheritance but no encapsulation. </p>
<p>When you want encapsulation (private methods) you can use pl/sql packages. </p>
<p>All three at once isn't possible. </p>
http://stackoverflow.com/questions/1852707/can-oracle-10g-and-11g-be-installed-side-by-sideComment by tuinstoel on Can Oracle 10g and 11g be installed side-by-side?tuinstoel2009-12-05T16:56:27Z2009-12-05T16:56:27ZIt should be possible. What error did you see? http://stackoverflow.com/questions/1849184/how-do-i-rename-primary-key-values-in-oracle/1851072#1851072Comment by tuinstoel on How do I rename primary key values in Oracle?tuinstoel2009-12-05T13:02:27Z2009-12-05T13:02:27ZWell, sometimes an insert..select is faster than a big update. But I think that you have to include hint /*+ append */ to make this true. insert /*+ append */ into ... select ... from http://stackoverflow.com/questions/1783815/what-is-a-good-fizzbuzz-question-for-a-sql-programmer/1783860#1783860Comment by tuinstoel on What is a good 'FizzBuzz' question for a SQL programmer?tuinstoel2009-12-05T07:15:22Z2009-12-05T07:15:22ZThe cursor-syntax is highly dependent on which db-vendor you use. The syntax for using cursors is very easy when you use Oracle. A lot of people say that you should not use cursors because cursors are slow(er). The question why cursors are slower is imho a very complicated question, not a FizzBuzz question. http://stackoverflow.com/questions/1792496/what-are-the-minimal-quantity-of-testers-per-programmers/1792507#1792507Comment by tuinstoel on What are the minimal quantity of testers per programmers?tuinstoel2009-12-04T08:36:43Z2009-12-04T08:36:43ZTrue, but 1 per 20 remains very low. I can't think of an organization where 1 per 20 is sufficient. http://stackoverflow.com/questions/1842596/sqlite-ado-net-how-to-correctly-use-query-builder/1842756#1842756Comment by tuinstoel on SQLite ADO .NET - how to correctly use query builder?tuinstoel2009-12-04T06:54:13Z2009-12-04T06:54:13ZI'm suprised that it works at all. I didn't know you could use parameter binding with data definition language statements. http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most/1836059#1836059Comment by tuinstoel on Common "Truisms" that need correcting the most.tuinstoel2009-12-03T06:28:25Z2009-12-03T06:28:25ZThat stored proc sql and dynamic sql are both precompiled doesn't prove that there are no performance benefits or drawbacks when using stored procs. Do we bring the data to the code or the code to the data? That's the question! http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered/576065#576065Comment by tuinstoel on Are the days of the stored procedure numbered?tuinstoel2009-12-03T06:12:14Z2009-12-03T06:12:14ZYou can use server-side CLR procedures with Oracle too but the database has to run on a windows machine, not a Linux or Unix machine. http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered/1309284#1309284Comment by tuinstoel on Are the days of the stored procedure numbered?tuinstoel2009-12-03T06:10:08Z2009-12-03T06:10:08ZDo you think that the use of stored procs is limited to relational databases? A non-relational database like MongoDB also has stored procs (they are called stored server-side functions)http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered/1326030#1326030Comment by tuinstoel on Are the days of the stored procedure numbered?tuinstoel2009-12-03T06:09:35Z2009-12-03T06:09:35ZWhat are extended stored procs? What is the difference between non-extended sp's and extended sp's? Please explain!http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered/1331395#1331395Comment by tuinstoel on Are the days of the stored procedure numbered?tuinstoel2009-12-03T06:08:53Z2009-12-03T06:08:53ZDo you think that the use of stored procs is limited to relational databases? A non-relational database like MongoDB also has stored procs (they are called stored server-side functions). http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered/216745#216745Comment by tuinstoel on Are the days of the stored procedure numbered?tuinstoel2009-12-03T04:23:07Z2009-12-03T04:23:07ZWhen your dataset is large (and maybe distributed) it is indeed better to bring the code to the data than the bring the data to your code. http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most/432186#432186Comment by tuinstoel on Common "Truisms" that need correcting the most.tuinstoel2009-12-02T21:23:58Z2009-12-02T21:23:58ZI hope that in the future there will be compilers that are smart enough to understand that some code needs to be run as a stored proc and some code in the another layer. The compiler should decide what's the best place to run a piece of code. Bring the data to the code or to bring the code to the data? The compiler or the JVM or the Common Language Runtime should make the most optimal choice. http://stackoverflow.com/questions/1828761/removing-all-references-from-a-tuple-using-oracle-access/1828827#1828827Comment by tuinstoel on Removing all references from a tuple using Oracle/Accesstuinstoel2009-12-01T21:42:53Z2009-12-01T21:42:53ZAccess is just the client, Oracle does the real job. However your SQL syntax will work. http://stackoverflow.com/questions/1828761/removing-all-references-from-a-tuple-using-oracle-accessComment by tuinstoel on Removing all references from a tuple using Oracle/Accesstuinstoel2009-12-01T21:40:45Z2009-12-01T21:40:45ZWhy all those CHAR columns? Change them into varchar2 columns because varchar2 columns use less space, varchar2 columns don't have blank paddings. http://stackoverflow.com/questions/1828761/removing-all-references-from-a-tuple-using-oracle-access/1828827#1828827Comment by tuinstoel on Removing all references from a tuple using Oracle/Accesstuinstoel2009-12-01T21:34:54Z2009-12-01T21:34:54ZIt's not the question whether Access supports cascading deletes. The question is whether Oracle supports cascading deletes and Oracle does support cascading deletes.