tuinstoel
|
Registered User
|
|
|
8h |
comment |
Did you have ego problems with reading books of `Headfirst` series? Upvoted this because it seems an honest answer, don't understand why someone else downvoted this answer. |
|
15h |
answered | Graph database for .NET |
|
2d |
comment |
Connection Pooling on Oracle 11g w/ asp.net Which database provider do you use? ODP.net, devart, dotconnect, Microsoft's provider for Oracle? |
|
2d |
comment |
Where can I find an excellent database search engine script? Which db do you use? Mysql, sqlite, ms sql, Oracle...? |
|
Nov 23 |
revised |
database design - how do you use the database to confirm complete data entry and validation +Oracle example with fast refreshable materialized view |
|
Nov 22 |
comment |
database design - how do you use the database to confirm complete data entry and validation LOL, well, I'm not afraid! What exactly is uninformed in my answer by the way? |
|
Nov 22 |
answered | database design - how do you use the database to confirm complete data entry and validation |
|
Nov 22 |
comment |
How to push Erlang to my workplace Ok, do you have a list of successful organizations and/or companies who use the combination of Erlang and Java in that same way? |
|
Nov 22 |
comment |
How to push Erlang to my workplace Interfacting techniques? You mean interfacing techniques? |
|
Nov 22 |
comment |
How to push Erlang to my workplace Start by explaining to us why you think that Erlang is well suited for the server systems developed in your workplace. |
|
Nov 22 |
comment |
What are five things you hate about your favorite language? @chris, that's true, for instance 29 of the 30 most used Dutchs verbs are irregular. Only 'maken' is regular. |
|
Nov 22 |
comment |
Is it possible to insert multiple rows at a time in an SQLite database? On bulk inserts: stackoverflow.com/questions/1711631/… |
|
Nov 20 |
comment |
What’s a good way to handle “async” commits? Give it a try and let us know. |
|
Nov 20 |
comment |
What’s a good way to handle “async” commits? Is it possible to see that the data is there? You could insert an increasing number via COM+ and query this number via ODP.NET. |
|
Nov 20 |
comment |
What’s a good way to handle “async” commits? Have you tried what is suggested in that link? Moving to odp.net 11.1.07.20 and Oracle 11. |
|
Nov 20 |
comment |
What is the worst programming language you ever worked with? You can choose whether you want to use PL/SQL interpreted or compiled, there is no longer a limit on the amount of output and there are good debuggers and profilers. You can use for instance autonomous transactions to make it possible to see output before the program is done. |
|
Nov 20 |
accepted | What is the best way to write a validation layer for SQLite |
|
Nov 18 |
comment |
Oracle Lab DB Design (Pipeline Functions?) Ok, I would create a stored proc that inserts one sample record and three test records in the test table. When this is done you commit. Those three test records have status done='N'. You can write a pipelined function to returns all the test records where status done='N' per specific sample-id. When one test is done you update this test and set done='Y'. After all three tests are done you update the sample record and set done='Y'. |
|
Nov 18 |
comment |
Oracle Lab DB Design (Pipeline Functions?) You want a function that returns the children of one master record? I don't think I agree. Good database programming is set based, not row-by-row. |
|
Nov 18 |
revised |
Oracle Lab DB Design (Pipeline Functions?) pipelined function. |
|
Nov 18 |
comment |
How do I improve the performance of SQLite? I like sqlite, I hope that in the future it becomes possible to drop columns and to add constraints with an alter table... |
|
Nov 18 |
comment |
How do I improve the performance of SQLite? When you call stuff like MS SQL or Oracle you call another process but you call sqlite alwyas in process. That makes sqlite fast. Sadly the commit takes a long time in sqlite. It is important to use parameterized queries if you want good performance (just like with Oracle). When I use file monitor (sysinternals) I see that my virus scanner again and again investigates the journal file. I wonder whether that slows things down or not? I should investigate that issue further. |
|
Nov 18 |
answered | Oracle Lab DB Design (Pipeline Functions?) |
|
Nov 18 |
answered | What is the best way to write a validation layer for SQLite |
|
Nov 16 |
comment |
Oracle PL/SQL - tips for immediate output / console printing Of course you have to change your code. Just wrapping it inside a pipelined function doesn't help you because you want immediate logging and not only logging when something is done. |
|
Nov 14 |
comment |
What was the strangest coding standard rule that you were forced to follow? 3 seems like a fine decision to me but maybe I'm just one of those wimpy Europeans who likes compromises too much. |
|
Nov 14 |
answered | Is it possible to insert multiple rows at a time in an SQLite database? |
|
Nov 14 |
comment |
What are five things you hate about your favorite language? The C# switch statement isn't very good but fallthrough isn't the solution. The possibility to comma separate more than one case value is much better. |
|
Nov 14 |
comment |
Is this file lock issue due to me copying the DB file for every MSTest test? (using DeploymentItem annotation) Yes, the application creates the tables and so do the unit tests. My tests start with nothing. |
|
Nov 13 |
comment |
Is this file lock issue due to me copying the DB file for every MSTest test? (using DeploymentItem annotation) I have the same problem. I just create a sqlitedb in my unit test by opening a connection to a not existing file. However I can't delete this file in my teardown because it is locked. |
|
Nov 13 |
answered | How to use an Oracle Associative Array in a SQL query |
|
Nov 13 |
answered | Oracle PL/SQL - tips for immediate output / console printing |
|
Nov 13 |
accepted | Zend Framework: Getting started using SQLite |
|
Nov 13 |
comment |
Anyone feel like passing it forward? Isn't it possible to hire someone for a few days? |
|
Nov 12 |
comment |
Explaining why “Just add another column to the DB” is a bad idea, to non programmers. Find out how a successful company like salesforce handles customization. |
|
Nov 12 |
comment |
Explaining why “Just add another column to the DB” is a bad idea, to non programmers. Do you have an alternative or not? If not, start developing one or read a book or two, if you have, start convincing your fellow devs. |
|
Nov 12 |
comment |
Explaining why “Just add another column to the DB” is a bad idea, to non programmers. @Neil, you should have an alternative that is benchmarked. Find out what other successful companies do. Just thinking, oh those 'stupid' sales people...they simply don't unders... isn't good enough. |
|
Nov 12 |
comment |
Explaining why “Just add another column to the DB” is a bad idea, to non programmers. @Meta-Knight, It isn't a trivial problem. |
|
Nov 12 |
comment |
Explaining why “Just add another column to the DB” is a bad idea, to non programmers. @Neil, please explain more about the alternatives you have in mind? And adding extra columns for one customer to a table doesn't mean that the database is no longer normalized. |
|
Nov 12 |
comment |
Explaining why “Just add another column to the DB” is a bad idea, to non programmers. The OP doesn't explain what kind of alternatives he has in mind. |
|
Nov 12 |
answered | Explaining why “Just add another column to the DB” is a bad idea, to non programmers. |
|
Nov 2 |
accepted | How can I combine multiple rows into a comma-delimited list in Oracle? |
|
Oct 31 |
answered | Oracle Parameters with IN statement? |
|
Oct 30 |
comment |
SQL joining question Could you privide create table statements and maybe some inserts too? |
|
Oct 30 |
answered | How can I update a ‘long’ datatype in Oracle? |
|
Oct 26 |
answered | Connecting C# to Oracle |
|
Oct 26 |
accepted | Modify PL/SQL statement strings in C++ |
|
Oct 25 |
answered | 3 Tier Architecture vs 2 Tier Architecture |
|
Oct 25 |
revised |
Modify PL/SQL statement strings in C++ a different way via dbms_sql |
|
Oct 24 |
answered | Read SQL File in Resources RESX and Create TAbles, Insert Rows with Oracle ODP.NET |
