Click here to Skip to main content
15,888,984 members
Home / Discussions / Database
   

Database

 
AnswerRe: PostgreSQL or MySQL? Pin
Jassim Rahma8-Sep-10 10:00
Jassim Rahma8-Sep-10 10:00 
AnswerRe: PostgreSQL or MySQL? Pin
Jassim Rahma8-Sep-10 10:04
Jassim Rahma8-Sep-10 10:04 
AnswerRe: PostgreSQL or MySQL? Pin
Simon_Whale8-Sep-10 22:23
Simon_Whale8-Sep-10 22:23 
AnswerRe: PostgreSQL or MySQL? Pin
Bernhard Hiller8-Sep-10 22:41
Bernhard Hiller8-Sep-10 22:41 
AnswerRe: PostgreSQL or MySQL? Pin
David Skelly9-Sep-10 1:46
David Skelly9-Sep-10 1:46 
AnswerRe: PostgreSQL or MySQL? Pin
Daniel Casserly9-Sep-10 2:21
Daniel Casserly9-Sep-10 2:21 
GeneralRe: PostgreSQL or MySQL? Pin
Jassim Rahma9-Sep-10 2:53
Jassim Rahma9-Sep-10 2:53 
GeneralRe: PostgreSQL or MySQL? Pin
Bernhard Hiller9-Sep-10 3:42
Bernhard Hiller9-Sep-10 3:42 
Yes, some. But generally, the problem can be solved.
Some points to consider:
- searching text with MS databases is not case sensitive, in postgres it is. You can use ILIKE instead of LIKE or the LOWER() function on both sides.
- the table name USER is not allowed, using square brackets is also not allowed (e.g. [USER]); you can use user_ instead.
- the data type Guid is missing. You can use CHAR(36) instead.
- autoincrement columns are implemented differently. Use the data type serial, a sequence is created automatically. For querying the last inserted id, "SELECT @@Identity" does not work, you must query the current value of the sequence instead: SELECT currval(pg_get_serial_sequence(mytable, mycolumn));
GeneralRe: PostgreSQL or MySQL? Pin
Daniel Casserly9-Sep-10 4:10
Daniel Casserly9-Sep-10 4:10 
GeneralRe: PostgreSQL or MySQL? Pin
JChrisCompton9-Sep-10 8:13
JChrisCompton9-Sep-10 8:13 
Questionsql server 2005 maintainance plan good practice.... Pin
Sasmi_Office8-Sep-10 1:52
Sasmi_Office8-Sep-10 1:52 
AnswerRe: sql server 2005 maintainance plan good practice.... Pin
Mycroft Holmes8-Sep-10 13:15
professionalMycroft Holmes8-Sep-10 13:15 
GeneralRe: sql server 2005 maintainance plan good practice.... Pin
Corporal Agarn9-Sep-10 1:18
professionalCorporal Agarn9-Sep-10 1:18 
QuestionSQL Server CAL Pin
divyesh14327-Sep-10 20:56
divyesh14327-Sep-10 20:56 
AnswerRe: SQL Server CAL Pin
Corporal Agarn8-Sep-10 6:33
professionalCorporal Agarn8-Sep-10 6:33 
GeneralRe: SQL Server CAL Pin
divyesh14328-Sep-10 18:05
divyesh14328-Sep-10 18:05 
GeneralRe: SQL Server CAL Pin
Corporal Agarn9-Sep-10 1:12
professionalCorporal Agarn9-Sep-10 1:12 
AnswerRe: SQL Server CAL Pin
Mycroft Holmes8-Sep-10 13:12
professionalMycroft Holmes8-Sep-10 13:12 
GeneralRe: SQL Server CAL Pin
divyesh14328-Sep-10 18:09
divyesh14328-Sep-10 18:09 
GeneralRe: SQL Server CAL Pin
Mycroft Holmes8-Sep-10 19:11
professionalMycroft Holmes8-Sep-10 19:11 
GeneralRe: SQL Server CAL Pin
Corporal Agarn9-Sep-10 1:09
professionalCorporal Agarn9-Sep-10 1:09 
AnswerRe: SQL Server CAL Pin
The Man from U.N.C.L.E.9-Sep-10 8:01
The Man from U.N.C.L.E.9-Sep-10 8:01 
QuestionPartioning table Pin
geeeeeeeetha7-Sep-10 17:44
geeeeeeeetha7-Sep-10 17:44 
AnswerRe: Partioning table Pin
Mycroft Holmes7-Sep-10 18:01
professionalMycroft Holmes7-Sep-10 18:01 
QuestionHow to keep one more backup copy of current database. Pin
shiva.kore6-Sep-10 22:05
shiva.kore6-Sep-10 22:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.