![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
#3
| |||
| |||
|
|
Hello, everyone. I am VERY new, as in simply researching possibilities, to SQL Servers in any shape or form. However, I do have a question: on the PostgreSQL website (About Us Advantages) it mentions: "In addition to this our training programs are generally regarded as being far more cost effective, manageable, and practical in the real world than that of the leading proprietary database vendors. " Where's the training? I can't find any other information about this remarkable training on their website. Can someone point me in the right direction? |
#4
| |||
| |||
|
|
I think that is about the author of the web site, and is being removed. -- Bruce Momjian | http://candle.pha.pa.us |
#5
| |||
| |||
|
|
I think that is about the author of the web site, and is being removed. -- Bruce Momjian | http://candle.pha.pa.us Since the last survey on postgresql.org had almost 80% of those surveyed wanting a standard worldwide PostgreSQL training course (and over 50% being strongly yes), are there any forseeable future plans for standard certification/training? |
#6
| |||
| |||
|
|
I have a table with 10,000 rows. We have an application that parses a *.csv file and uploads the data to the database table. The csv parser takes the column numbers form the csv file and matches the column numbers to the field positions in the DB table. Now, I have to change the position of a column in the DB to match the csv parser. I have a column in position 28 that I need to move to position 7. Anyone know how to do that? |
|
Thanks, Derrick |
#7
| |||
| |||
|
|
Date: Tue, 9 Dec 2003 15:06:05 -0800 From: Bryan Encina <bryan.encina (AT) valleypres (DOT) org To: 'Bruce Momjian' <pgman (AT) candle (DOT) pha.pa.us Cc: pgsql-novice (AT) postgresql (DOT) org Subject: Re: [NOVICE] PostgreSQL Training |
#8
| |||
| |||
|
|
Bret, Thanks for voicing your opinion. I'll second it as loudly as I can. I work for a small 5 member team in a major hospitality corporation. Our team has a mish mash of responsibilities (help desk, tool design through MS Excel and MS Access, and corporate reporting). We are just pushing the limits of MS Access capabilities with the amount of data we are getting pushed to us for our corporate reporting. The amount of data is only going to grow and we realize we NEED to move to a SQL server of some kind. Cost containment is a huge factor, so the free-ware aspect of PostgresQL is extremely enticing. However, only 1 person on our team has ANY experience with SQL servers and none with PostgreSQL. We originally started investigating MySQL, but found it to be slower than the convoluted work around we've developed in MS Access. Further investigation revealed that it may be due to how we had the server set up. Then, someone suggestions PostgreSQL. I have been reading what I can, and while I understand some of the concepts, and I am still mostly floundering my way through "Greek". I need a strong foundation in the basics. I had found the MySQL class and have added that to my goals for next year. However, it will take some strong arguments to convince my superiors to send me to training for something that will "sort of" apply to what we are doing in the office. So my options are: use MySQL instead or don't go to training. In the mean time, I will investigate the "21 day" book (I have used the series many times!) and hope the PostgreSQL community will recognize the need for some training classes (The certifications are optional as far as I'm concerned, though I recognize the power of certifications since I used to teach at New Horizons Computer Training Center. I just want someone to hold my hand and walk me through the entire process so I can learn the lingo. Then, I can figure things out on my own). And I'll be asking as many questions on the list server as I can. Cheers, Amy Young Sr. Revenue Analyst Memphis, TN -----Original Message----- From: pgsql-novice-owner (AT) postgresql (DOT) org [mailto gsql-novice-owner (AT) postgresql (DOT) org] On Behalf Of Bret BusbySent: Wednesday, December 10, 2003 1:09 AM To: pgsql-novice (AT) postgresql (DOT) org; pgsql-general (AT) postgresql (DOT) org Subject: Re: [NOVICE] PostgreSQL Training On Tue, 9 Dec 2003, Bryan Encina wrote: Date: Tue, 9 Dec 2003 15:06:05 -0800 From: Bryan Encina <bryan.encina (AT) valleypres (DOT) org To: 'Bruce Momjian' <pgman (AT) candle (DOT) pha.pa.us Cc: pgsql-novice (AT) postgresql (DOT) org Subject: Re: [NOVICE] PostgreSQL Training ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster |
#9
| |||
| |||
|
|
Derrick Betts wrote: I have a table with 10,000 rows. We have an application that parses a *.csv file and uploads the data to the database table. The csv parser takes the column numbers form the csv file and matches the column numbers to the field positions in the DB table. Now, I have to change the position of a column in the DB to match the csv parser. I have a column in position 28 that I need to move to position 7. Anyone know how to do that? You could DROP and re-CREATE the table. CREATE TABLE tmp AS SELECT col1, col3, col2 FROM mytab; DROP TABLE mytab; ALTER TABLE tmp RENAME TO mytab; _BUT_: You need to take care of special cases like UNIQUE & FOREIGN KEYs etc., i.e. usually you need a better CREATE clause than this easy example. Thanks, Derrick HTH -- e-Trolley Sayegh & John, Nabil Sayegh Tel.: 0700 etrolley /// 0700 38765539 Fax.: +49 69 8299381-8 PGP : http://www.e-trolley.de ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster |
#10
| |||
| |||
|
|
The MySQL certifications, are international skillset certifications, like MCAD, MCSD, MCSE, RHCE, and LPI certifications, and, from what I understand, similarly, internationally recognised. |
|
My wife is a software developer, by profession. She also trains people, and has trained lecturers, in some of the development software in which she develops. |
![]() |
| Thread Tools | |
| Display Modes | |
| |