0
votes
0answers
20 views
NHibernate Many-to-many with Count
I have entities Post and Tag, where there is a many-to-many relationship between the two (e.g. each post can have one or more tags, and each tag can be associated with any number o …
2
votes
2answers
20 views
Disk-based database caching: Disadvantages?
I'm running a database-backed web site on shared hosting that occasionally gets swarmed after a mention on a link sharing site.
Because of how much load the first couple of traffi …
0
votes
1answer
15 views
Question on storing an xml document in a text document within a publish / subscribe architecture
I was having a discussion at work today with some colleagues who are a ways down the path of architecting a new application. Other applications in the company will want to react t …
0
votes
2answers
21 views
Real-time synchronization of database data across all the clients
What's the best strategy to keep all the clients of a database server synchronized?
The scenario involves a database server and a dynamic number of clients that connect to it, vie …
2
votes
6answers
38 views
Optimize SQL query for canceled orders
Here is a subset of my tables:
orders:
- order_id
- customer_id
order_products:
- order_id
- order_product_id (unique key)
- canceled
I want to select all orders (order_id …
1
vote
1answer
20 views
Database visualization tool
I just watched a session of PDC09 about new features of Entity framework in .NET 4.
Video page: http://microsoftpdc.com/Sessions/FT10
in the video, (seek to minute 7) presenter u …
1
vote
4answers
31 views
How do I alter a mysql table column defaults?
I have a table with a column of type timestamp which defaults current_timestamp and updates to current_timestamp on every update.
I want to remove the "on update" feature on this …
2
votes
5answers
123 views
Fastest method to fill a database table with 10 Million rows
What is the fastest method to fill a database table with 10 Million rows? I'm asking about the technique but also about any specific database engine that would allow for a way to d …
0
votes
5answers
35 views
Is there any way to let MySQL server ‘push’ DB updates to a client program?
A typical scenario: imaging a user is feeding data to MySQL, while a client is connected to MySQL remotely. What I want is that, whenever the user update some fields in the DB, th …
1
vote
2answers
37 views
PostgreSQL and JMS (Or other Pub-Sub/Callback Mechanism)
I want to have my PostgreSQL server send out notifications when a piece of data changes, preferably over JMS, but also considering any other Pub-Sub mechanism or Callback.
Any ide …
1
vote
3answers
94 views
How do i merge two or more rows based on their foreign key?
I have three tables which are:
A(a1, a2, a3)
//This tbl (Table) can have multiple instances of a1, but cause of its dependence on b1,
//we have a unique record each time
B(b1, a …
0
votes
7answers
69 views
Method of simulating views on a SQL Server with read-only access?
I'm trying to do quite a lot of querying against a Microsoft SQL Server that I only have read only access to. My queries are needing to work with the data in very different struct …
0
votes
2answers
42 views
Getting headers when streaming images through PHP from a database
I have some pretty simple php code that returns binary image data from a database.
ob_start();
$stmt = $db->prepare($sql);
$stmt->execute(array($ImageID));
$stmt->bindCo …
1
vote
1answer
13 views
PostgreSQL and Point in Time Recovery
I was reading through this: http://www.postgresql.org/about/
And I saw this:
An enterprise class database,
PostgreSQL boasts sophisticated
features such as ... point in t …
0
votes
5answers
63 views
how to connect to database on another server
Hi,
Could I have my php scripts on server A and connect to the MySQL database on server B?
If yes, how it would be done? Thanks in advance
