Search Results

2
votes

Creating a custom ODBC driver

ODBC drivers are very complex - the decision to write one should not be taken lightly. Reviewing existing open source drivers are a good approach for examples but most have shortcommings you may n …
0
votes

Predict next auto-inserted row id (sqlite)

I realize your application using sqllite is small and sqllite has its own semantics. Other solutions posted here may well have the effect that you want in this specific setting but in my view every …
3
votes

What is the best way to maintain a LastUpdatedDate column in SQL?

Triggers are a blessing and a curse. Blessing: You can use them to enable all kinds of custom constraint checking and data management without backend systems knowledge or changes. …
0
votes

Storing Business Hours in a Database

Might think about factoring in holidays by including additional fields for month of year/day of month/week of month. Week of month has some minor subtlties "last" could for example be week 4 or 5 …
1
vote

Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?

It depends on context. If its very limited as you suggest simply logging some basic file transfer data processing the log once and throwing it away I would tend to be attracted to the flat file op …
0
votes

Most Efficient Way to… Unique Random String

I think you should stick to your origional idea. Putting a unique constraint on the index and letting the database check/report dupes for you would be fairly effecient method of dupe checking but …
0
votes

performance of web app with high number of inserts

When working with an RDBMS the most important thing is optimizing write operations to disk. Something somewhere has got to flush() to persistant storage (disk drives) to complete each transaction …
0
votes

server side db programming: why?

A good way to reduce scalability of your data tier is to interact with it on a procedural basis. (Fetch row..process... update a row, repeat) This can be done within a stored procedure by …