Click here to Skip to main content
15,886,110 members
Home / Discussions / Database
   

Database

 
Questionoracle error with winserver2008 Pin
fares35-Feb-13 1:03
fares35-Feb-13 1:03 
AnswerRe: oracle error with winserver2008 Pin
Bernhard Hiller5-Feb-13 4:57
Bernhard Hiller5-Feb-13 4:57 
Questionchar(255) vs varchar(255) vs varchar(MAX) Pin
devvvy1-Feb-13 18:22
devvvy1-Feb-13 18:22 
AnswerRe: char(255) vs varchar(255) vs varchar(MAX) Pin
Richard MacCutchan1-Feb-13 23:07
mveRichard MacCutchan1-Feb-13 23:07 
GeneralRe: char(255) vs varchar(255) vs varchar(MAX) Pin
devvvy2-Feb-13 15:39
devvvy2-Feb-13 15:39 
AnswerRe: char(255) vs varchar(255) vs varchar(MAX) Pin
PIEBALDconsult2-Feb-13 5:22
mvePIEBALDconsult2-Feb-13 5:22 
GeneralRe: char(255) vs varchar(255) vs varchar(MAX) Pin
devvvy2-Feb-13 23:30
devvvy2-Feb-13 23:30 
GeneralRe: char(255) vs varchar(255) vs varchar(MAX) Pin
jschell3-Feb-13 6:36
jschell3-Feb-13 6:36 
devvvy wrote:
I think it's the opposite. CHAR don't store trailing termination char (2 bytes for SQL), varchar does


Not sure what that statement means.

The 'char' data type is fixed length. That means that there will ALWAYS be 255 characters. And the way normal APIs to databases handle that is that they pad shorter lengths with spaces. Pretty sure that is an ANSI requirement as well.

devvvy wrote:
that's why you should always use VARCHAR(n) as supposed to VARCHAR(MAX)


Unless of course you know that you will be storing data larger than the largest integer value allowed for varchar(n).

devvvy wrote:
CHAR(n) when lenght same for all/most rows.


In normal database design most columns will be varchar because
1. User data is almost always variable
2. Application data that is text almost always has a variable length.
QuestionSP Unexpected Behavior Pin
eddieangel1-Feb-13 7:19
eddieangel1-Feb-13 7:19 
QuestionEncrypt a field in the database. Pin
vanikanc1-Feb-13 5:31
vanikanc1-Feb-13 5:31 
AnswerRe: Encrypt a field in the database. Pin
Eddy Vluggen1-Feb-13 7:02
professionalEddy Vluggen1-Feb-13 7:02 
Questioncheck before insert Pin
vanikanc31-Jan-13 4:55
vanikanc31-Jan-13 4:55 
AnswerRe: check before insert Pin
Eddy Vluggen31-Jan-13 5:00
professionalEddy Vluggen31-Jan-13 5:00 
GeneralRe: check before insert Pin
Eddy Vluggen31-Jan-13 10:35
professionalEddy Vluggen31-Jan-13 10:35 
AnswerRe: check before insert Pin
R. Giskard Reventlov31-Jan-13 8:10
R. Giskard Reventlov31-Jan-13 8:10 
GeneralRe: check before insert Pin
vanikanc31-Jan-13 8:21
vanikanc31-Jan-13 8:21 
GeneralRe: check before insert Pin
R. Giskard Reventlov31-Jan-13 10:09
R. Giskard Reventlov31-Jan-13 10:09 
GeneralRe: check before insert Pin
Chris Meech31-Jan-13 10:24
Chris Meech31-Jan-13 10:24 
GeneralRe: check before insert Pin
R. Giskard Reventlov31-Jan-13 10:25
R. Giskard Reventlov31-Jan-13 10:25 
AnswerRe: check before insert Pin
Corporal Agarn1-Feb-13 7:50
professionalCorporal Agarn1-Feb-13 7:50 
GeneralRe: check before insert Pin
vanikanc1-Feb-13 7:55
vanikanc1-Feb-13 7:55 
GeneralRe: check before insert Pin
Corporal Agarn1-Feb-13 8:25
professionalCorporal Agarn1-Feb-13 8:25 
QuestionIdentify DML changes between two databases Pin
Member 313707830-Jan-13 20:56
Member 313707830-Jan-13 20:56 
AnswerRe: Identify DML changes between two databases Pin
Mycroft Holmes30-Jan-13 21:11
professionalMycroft Holmes30-Jan-13 21:11 
GeneralRe: Identify DML changes between two databases Pin
Member 313707830-Jan-13 21:26
Member 313707830-Jan-13 21:26 

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.