User tuinstoel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T20:43:35Z http://stackoverflow.com/feeds/user/43901 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1835391/pivoting-sqlite-table-setwise-like-sql-should-be/1847034#1847034 0 Answer by tuinstoel for Pivoting SQLite table, setwise like SQL should be tuinstoel 2009-12-04T13:44:29Z 2009-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#1846771 0 Answer by tuinstoel for SQLLite not inserting into tuinstoel 2009-12-04T12:49:10Z 2009-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#1846664 0 Answer by tuinstoel for Oracle database table insertion tuinstoel 2009-12-04T12:29:03Z 2009-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#1842942 2 Answer by tuinstoel for Faster alternative in Oracle to SELECT COUNT(*) FROM sometable tuinstoel 2009-12-03T21:10:29Z 2009-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#1837761 0 Answer by tuinstoel for Are the days of the stored procedure numbered? tuinstoel 2009-12-03T05:01:22Z 2009-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#1835977 0 Answer by tuinstoel for Are the days of the stored procedure numbered? tuinstoel 2009-12-02T21:35:05Z 2009-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#1835336 1 Answer by tuinstoel for Oracle's COLLECT function creates new collection data type with random name tuinstoel 2009-12-02T19:47:08Z 2009-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#1830803 2 Answer by tuinstoel for Horizontal Database and Vertical Database tuinstoel 2009-12-02T05:21:32Z 2009-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#1814766 0 Answer by tuinstoel for Going live with a project with no bugs generation tuinstoel 2009-11-29T05:43:21Z 2009-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#1812085 3 Answer by tuinstoel for Performance Standalone Procedure vs Packaged Procedure in Oracle tuinstoel 2009-11-28T09:28:56Z 2009-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#1812001 1 Answer by tuinstoel for Oracle: speeding up count(*)? tuinstoel 2009-11-28T08:41:46Z 2009-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&gt; SQL&gt; SQL&gt; select * from foobar_count; COUNT ---------- 8 SQL&gt; SQL&gt; 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#1805252 0 Answer by tuinstoel for Graph database for .NET tuinstoel 2009-11-26T19:11:29Z 2009-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#1779978 0 Answer by tuinstoel for database design - how do you use the database to confirm complete data entry and validation tuinstoel 2009-11-22T20:58:40Z 2009-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&gt; 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#1758531 2 Answer by tuinstoel for Oracle Lab DB Design (Pipeline Functions?) tuinstoel 2009-11-18T19:42:15Z 2009-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#1758130 3 Answer by tuinstoel for What is the best way to write a validation layer for SQLite tuinstoel 2009-11-18T18:38:23Z 2009-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#1734110 0 Answer by tuinstoel for Is it possible to insert multiple rows at a time in an SQLite database? tuinstoel 2009-11-14T12:26:26Z 2009-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#1731121 0 Answer by tuinstoel for How to use an Oracle Associative Array in a SQL query tuinstoel 2009-11-13T18:51:42Z 2009-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#1731084 1 Answer by tuinstoel for Oracle PL/SQL - tips for immediate output / console printing tuinstoel 2009-11-13T18:43:15Z 2009-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#1724537 1 Answer by tuinstoel for Explaining why "Just add another column to the DB" is a bad idea, to non programmers. tuinstoel 2009-11-12T18:57:34Z 2009-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#1655743 0 Answer by tuinstoel for Oracle Parameters with IN statement? tuinstoel 2009-10-31T22:05:47Z 2009-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#1651739 0 Answer by tuinstoel for How can I update a 'long' datatype in Oracle? tuinstoel 2009-10-30T19:07:06Z 2009-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#1626701 2 Answer by tuinstoel for Connecting C# to Oracle tuinstoel 2009-10-26T19:01:01Z 2009-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 -1 Answer by tuinstoel for 3 Tier Architecture vs 2 Tier Architecture tuinstoel 2009-10-25T15:53:51Z 2009-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#1614858 1 Answer by tuinstoel for Modify PL/SQL statement strings in C++ tuinstoel 2009-10-23T17:24:44Z 2009-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; / &lt;QUERY&gt; &lt;SELECT&gt; &lt;SELECT_LIST&gt; &lt;SELECT_LIST_ITEM&gt; &lt;COLUMN_REF&gt; &lt;SCHEMA&gt;MICHAEL&lt;/SCHEMA&gt; &lt;TABLE&gt;EMP&lt;/TABLE&gt; &lt;TABLE_ALIAS&gt;E&lt;/TABLE_ALIAS&gt; &lt;COLUMN_ALIAS&gt;DEPTNO&lt;/COLUMN_ALIAS&gt; &lt;COLUMN&gt;DEPTNO&lt;/COLUMN&gt; &lt;/COLUMN_REF&gt; .... .... .... &lt;/QUERY&gt; </code></pre> <p>See here: <a href="http://forums.oracle.com/forums/thread.jspa?messageID=3693276&amp;#3693276" rel="nofollow">http://forums.oracle.com/forums/thread.jspa?messageID=3693276&amp;#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#1617138 0 Answer by tuinstoel for Read SQL File in Resources RESX and Create TAbles, Insert Rows with Oracle ODP.NET tuinstoel 2009-10-24T06:12:53Z 2009-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#1617084 0 Answer by tuinstoel for Why don't the mainstream DBMSs have graph functionality? tuinstoel 2009-10-24T05:47:37Z 2009-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#1614952 0 Answer by tuinstoel for Is use of DBMS_LOB necessary when returning CLOB from PL/SQL procedure? tuinstoel 2009-10-23T17:43:27Z 2009-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-closures 9 Are these examples C# closures? tuinstoel 2009-10-23T08:31:09Z 2009-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&lt;DirectoryInfo&gt; subFolders = new List&lt;DirectoryInfo&gt;(); Action&lt;string&gt; FilterSubFoldersStartA = s =&gt; subFolders. AddRange((new DirectoryInfo(s)).GetDirectories(). Where(d =&gt; d.Name.StartsWith("A"))); FilterSubFoldersStartA(@"c:\tempa"); FilterSubFoldersStartA(@"c:\tempb"); </code></pre> <p><strong>Example B:</strong></p> <pre><code>List&lt;DirectoryInfo&gt; subFolders = new List&lt;DirectoryInfo&gt;(); string filter = "A"; Action&lt;string&gt; FilterSubFoldersStartGen = s =&gt; subFolders. AddRange((new DirectoryInfo(s)).GetDirectories(). Where(d =&gt; 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#1602774 0 Answer by tuinstoel for Bulk Copy from SQL Server to Oracle tuinstoel 2009-10-21T18:42:23Z 2009-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#1580222 0 Answer by tuinstoel for PL/SQL private object method tuinstoel 2009-10-16T20:27:46Z 2009-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-side Comment by tuinstoel on Can Oracle 10g and 11g be installed side-by-side? tuinstoel 2009-12-05T16:56:27Z 2009-12-05T16:56:27Z It should be possible. What error did you see? http://stackoverflow.com/questions/1849184/how-do-i-rename-primary-key-values-in-oracle/1851072#1851072 Comment by tuinstoel on How do I rename primary key values in Oracle? tuinstoel 2009-12-05T13:02:27Z 2009-12-05T13:02:27Z Well, 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#1783860 Comment by tuinstoel on What is a good 'FizzBuzz' question for a SQL programmer? tuinstoel 2009-12-05T07:15:22Z 2009-12-05T07:15:22Z The 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#1792507 Comment by tuinstoel on What are the minimal quantity of testers per programmers? tuinstoel 2009-12-04T08:36:43Z 2009-12-04T08:36:43Z True, 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#1842756 Comment by tuinstoel on SQLite ADO .NET - how to correctly use query builder? tuinstoel 2009-12-04T06:54:13Z 2009-12-04T06:54:13Z I'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#1836059 Comment by tuinstoel on Common "Truisms" that need correcting the most. tuinstoel 2009-12-03T06:28:25Z 2009-12-03T06:28:25Z That 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#576065 Comment by tuinstoel on Are the days of the stored procedure numbered? tuinstoel 2009-12-03T06:12:14Z 2009-12-03T06:12:14Z You 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#1309284 Comment by tuinstoel on Are the days of the stored procedure numbered? tuinstoel 2009-12-03T06:10:08Z 2009-12-03T06:10:08Z Do 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#1326030 Comment by tuinstoel on Are the days of the stored procedure numbered? tuinstoel 2009-12-03T06:09:35Z 2009-12-03T06:09:35Z What 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#1331395 Comment by tuinstoel on Are the days of the stored procedure numbered? tuinstoel 2009-12-03T06:08:53Z 2009-12-03T06:08:53Z Do 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#216745 Comment by tuinstoel on Are the days of the stored procedure numbered? tuinstoel 2009-12-03T04:23:07Z 2009-12-03T04:23:07Z When 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#432186 Comment by tuinstoel on Common "Truisms" that need correcting the most. tuinstoel 2009-12-02T21:23:58Z 2009-12-02T21:23:58Z I 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#1828827 Comment by tuinstoel on Removing all references from a tuple using Oracle/Access tuinstoel 2009-12-01T21:42:53Z 2009-12-01T21:42:53Z Access 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-access Comment by tuinstoel on Removing all references from a tuple using Oracle/Access tuinstoel 2009-12-01T21:40:45Z 2009-12-01T21:40:45Z Why 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#1828827 Comment by tuinstoel on Removing all references from a tuple using Oracle/Access tuinstoel 2009-12-01T21:34:54Z 2009-12-01T21:34:54Z It's not the question whether Access supports cascading deletes. The question is whether Oracle supports cascading deletes and Oracle does support cascading deletes.