proftpd, at /usr/ports/ftp/proftpd is my recommendation, although honestly, making security as a requirement for FTP is kind of begging the question. FTP by default is not secure. If you want encrypted FTP, then you should just have the sshd daemon running, which will handle connections in...
Yes, 8.0 has greatly expanded your options for ALTER TABLE, which are not available for 7.4.
But, Postgresql has a very complete set of functions to format data of any type: http://www.postgresql.org/docs/7.4/interactive/functions-formatting.html
Also, PostgreSQL has a very convenient postfix...
There is no datatype ENUM in PostgreSQL, but it is quite easy to handle this with a CHECK constraint -- http://www.postgresql.org/docs/8.0/interactive/ddl-constraints.html
Often it is a better design choice to use foreign key constraints with validation tables to accomplish this sort of...
I would focus on that fact first, indeed foremost. FreeBSD takes the most conservative approach to making sure your data stays the way you stored it. In my experience, Linux has never been as stable or robust in storage. Also, you will find that a large percentage of PostgreSQL users and...
Well, what columns would you *like* to separate this data into? Split the above example into the appropriate columns with a "|" for now, so we can get an idea how you would like to design your table.
Basically, unless you have additional choices in how to output the file in the PIX, you will...
You might be interested to note that PHP5 now has 'autoload' capability: http://us4.php.net/manual/en/language.oop5.autoload.php
Basically, if you have a standard naming convention for your classes, then you can define one function to handle the automatic loading, and anywhere you use the...
I probably don't understand. Exactly how do you want to "move element in these array"? What are you trying to accomplish? Are you saying the array is composed of multiple rows from the table, or composed of individual elements from *one* table row?
Maybe if you posted that part of your PL/SQL...
Yes, it is simply a matter of typecasting, and I'm glad it is solved in version 8.0. Another way to fix the queries for indexes on different int types is to explicitly cast the constant to the right type:
select * from product where item_number=1234::int8
PostgreSQL can be compiled in 64-bit mode an any of the 64-bit architectures in ceco's link. Exactly what that means for performance/size is not always an easy answer. In other words, for some cases, the performance difference between a 32-bit and a 64-bit system might not be that great. Also...
Yes, there is a lot of confusion in the computing world anyway, and the consumer end of computing is where confusion is the heaviest.
As much as it pains me to say it, I think LindowsOS is probably the best chance the Linux world has to hit the consumer market. And that's because they don't...
Imap mail servers with advanced systems like SquirrelMail have some advantages. But, if you are already set up with Apache/PHP and sendmail, and want a very simple system, check out http://webgadgets.com/phpost/
-------------------------------------------
My PostgreSQL FAQ --...
Using a function like MAX on a varchar type implies all sorts of future problems. Why don't you just use a real autoincrement field as your primary key, and create another unique key with your naming convention above, if it is important for human-readable reasons?
But anyway, on to the full...
Well, I'm not completely sure of the logic you are trying to achieve here. Actually, I think you don't need a self join at all. If you just want to select everything that falls withing the past 12 months it would look like:
SELECT reviewerid, proposalid, dt, (NOW()-dt)::INTERVAL AS timespan...
The answer is: no, you don't need lo_import and lo_export. It is possible to store images and other files using the BYTEA datatype, by just sending the stream from the browser file upload to the variable that will fill that column. If you are doing this with PHP, you should use the...
What do you mean 'I tried interval'? Did you write a query with a self-join, casting the difference between dates to interval and then limiting to under 12 months? (That's how I would do it). If not, then exactly what query did you try?
In fact, INTERVAL columns and/or casting date differences...
I imagine there should be some way to get a generic return, even if you need a small standardized piece of code at the beginning of each function. You should ask this question in the PostgreSQL mailing list (see http://archives.postgresql.org to sign up). Try the pgsql-sql@postgresql.org list...
See http://www.postgresql.org/users-lounge/limitations.html on the overal size limitations of a PostgreSQL database.
For specific datatype size limitations, see http://www.postgresql.org/docs/view.php?version=7.3&idoc=1&file=datatype.html
I know this document isn't the clearest, but basically...
Most of the major Linux distributions have methods to allow you to preserve your Windows system, while still being able to boot to Linux. I recommend you get a second hard drive (they are very cheap these days, and it doesn't need to be large), and just install Mandrake, RedHat, or (if you...
Of course pq_query() is an undefined function. That's because the function you need is pg_query(). ("g" not "q")
-------------------------------------------
My PostgreSQL FAQ -- http://brainscraps.com/faq/pg_my.html
See http://techdocs.postgresql.org/guides/SetReturningFunctionsset-returning in the documentation. Also see the following links, copied from a recent PostgreSQL mailing list message:
http://techdocs.postgresql.org/guides/SetReturningFunctions...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.