0
votes
2answers
19 views
Synchronising scripts / db / files from dev system to web server
I work as a freelance web dev, and up until now have been ftping my scripts / databases / static files to my web server manually, but I'm finding that is too error prone. So I'm lo …
2
votes
3answers
26 views
What are some options to store images securely other than storing on database?
Typically file servers are used to store images for a web application. For more security and control you'd go for storing images in database. But this proves to be complex and slow …
1
vote
2answers
40 views
Django/SQL: keeping track of who who read what in a forum
I'm working on a not-so-big project in django that will among other things incorporate a forum system.
I have most of the system at a more or less functioning state, but I'm still …
1
vote
5answers
100 views
What does ‘relational’ in ‘relational database’ mean for us?
I know, relational database is a database where fields in one table are linking to rows in the others, something like this.
But I can't understand what does it mean for me as a we …
0
votes
2answers
92 views
How do I make my delete query FULLY work?
My delete.php is sending the selected item to the db as dead as it should, but the blog is still staying on the page that its deleted from. What am I doing wrong? this is my query: …
0
votes
4answers
62 views
Company internal number
I'm brazilian and I'm developping a management software for internal use in the company I'm working on.
I'd like to know a common english term to describe an imployee's internal co …
1
vote
2answers
48 views
PostgreSQL analog of SQL Server index
Trying to recreate my SQL Server database on PostgreSQL. Everything is ok except I can't find how to recreate this index:
USE [mytablename]
GO
CREATE NONCLUSTERED INDEX [myi …
0
votes
0answers
14 views
Setting Quercus db connection encoding to UTF-8 (urgent problem and need your great help)
Now we are going to use java class in my website developed with PHP + mySQL. I came to know Quercus and it worked well.
But only problem is encoding.
Quercus is providing ISO8859 e …
0
votes
1answer
66 views
Simple Hello World Zend frameworks for PHP Script Required
According to Phpinfo Zend is installed (Zend Engine v2.1.0) .
How ever when I call zend database commands they are swallowed without response or error message. (The script has been …
0
votes
1answer
10 views
MSI script to check sql server 2000 PE for a db name and not rerun db install script
Greetings,
I am seeking help on building a script that will allow my msi installer to check for an exsisting db or exsisting user on the local server of sql server 2000 Personal E …
0
votes
2answers
36 views
How to make tasks double-checked (the way how to store it in the DB)?
Hello all!
I have a DB that stores different types of tasks and more items in different tables.
In many of these tables (that their structure is different) I need a way to do it t …
0
votes
0answers
8 views
PGCluster Replication problem
When starting the PGCluster replication server I get the follwing problem:
postgres@mybox:/usr/local/pgsql/bin$ ./pgreplicate -D ../etc -l -n -v
*** buffer overflow detected ***: …
2
votes
5answers
145 views
Process 40M of documents (and index) as fast as possible
Hi everibody, Have a good day.
So my problem is basically this, I need to process 37.800.000 files.
Each "file" is really more than that, what I have is:
37.800.000 XML documen …
0
votes
1answer
24 views
Berkeley DB(Unable to Locate Component)
Hello,i have a problem with berkeley DB.I get a dialog titled "Unable To Locate Componenent" saying "This application has failed to start because libdb48.dll was not found.Re-insta …
0
votes
3answers
90 views
Binding params with Kohana’s Database library
I know I can bind params in Kohana like this
$this->db->query('SELECT * FROM products WHERE id = ?', array(14));
But is there a way to do it with identifiers (or whatever …
