Click here to Skip to main content
15,909,332 members
Home / Discussions / Database
   

Database

 
AnswerRe: help setting up matrix cross-refrence query Pin
Wendelius19-Aug-08 5:19
mentorWendelius19-Aug-08 5:19 
AnswerRe: help setting up matrix cross-refrence query Pin
Mycroft Holmes19-Aug-08 22:35
professionalMycroft Holmes19-Aug-08 22:35 
QuestionWhat is the disadvantage of using select * from table name?? Pin
Tridip Bhattacharjee17-Aug-08 23:16
professionalTridip Bhattacharjee17-Aug-08 23:16 
AnswerRe: What is the disadvantage of using select * from table name?? Pin
soni uma17-Aug-08 23:35
soni uma17-Aug-08 23:35 
AnswerRe: What is the disadvantage of using select * from table name?? Pin
SomeGuyThatIsMe18-Aug-08 2:11
SomeGuyThatIsMe18-Aug-08 2:11 
AnswerRe: What is the disadvantage of using select * from table name?? Pin
Tim Carmichael18-Aug-08 6:33
Tim Carmichael18-Aug-08 6:33 
AnswerRe: What is the disadvantage of using select * from table name?? Pin
PIEBALDconsult18-Aug-08 13:00
mvePIEBALDconsult18-Aug-08 13:00 
AnswerRe: What is the disadvantage of using select * from table name?? Pin
supercat919-Aug-08 9:28
supercat919-Aug-08 9:28 
If you explicitly specify the columns in a SELECT statement, they are guaranteed to be returned in the order you specify. Consequently, you may safely identify the columns as theReader(0), theReader(1), etc. rather than having to have the system look up the column names on every theReader("customerName") access. If, for whatever reason, the expected columns don't exist, it's probably better to have the problem caught in the SELECT statement than to throw an exception when the non-existent data is accessed.

If your code is genuinely interested in getting all the columns that are or ever will be in the database, including any that may be added in future, then SELECT * is appropriate. This may be the case, for example, in a database viewer (though unless a naming convention is used to indicate fields that should be regarded as confidential, such an approach could be dangerous even there). If you're only interested in a few fields, even if the fields of interest are at present the only ones in the database, you should specify explicitly the fields of interest.
Questionhow to split a string in oracle Pin
lakshmichawala17-Aug-08 19:41
lakshmichawala17-Aug-08 19:41 
AnswerCross Post!! Pin
ChandraRam17-Aug-08 21:21
ChandraRam17-Aug-08 21:21 
AnswerRe: how to split a string in oracle Pin
DerekFL18-Aug-08 10:40
DerekFL18-Aug-08 10:40 
GeneralRe: how to split a string in oracle Pin
Wendelius19-Aug-08 10:55
mentorWendelius19-Aug-08 10:55 
QuestionProblem StoredProcedure for LINQ Pin
K V Sekhar17-Aug-08 18:33
K V Sekhar17-Aug-08 18:33 
AnswerRe: Problem StoredProcedure for LINQ Pin
Syed Mehroz Alam18-Aug-08 7:04
Syed Mehroz Alam18-Aug-08 7:04 
NewsSQL Server 2008 Express edition released for download [modified] Pin
Wendelius17-Aug-08 2:40
mentorWendelius17-Aug-08 2:40 
GeneralRe: SQL Server 2008 Express edition released for download Pin
Colin Angus Mackay17-Aug-08 3:13
Colin Angus Mackay17-Aug-08 3:13 
GeneralRe: SQL Server 2008 Express edition released for download PinPopular
Wendelius17-Aug-08 3:17
mentorWendelius17-Aug-08 3:17 
QuestionStored Procedure help Pin
Vimalsoft(Pty) Ltd16-Aug-08 23:34
professionalVimalsoft(Pty) Ltd16-Aug-08 23:34 
AnswerRe: Stored Procedure help Pin
Wendelius16-Aug-08 23:47
mentorWendelius16-Aug-08 23:47 
GeneralRe: Stored Procedure help Pin
Colin Angus Mackay16-Aug-08 23:55
Colin Angus Mackay16-Aug-08 23:55 
GeneralRe: Stored Procedure help Pin
Wendelius17-Aug-08 1:59
mentorWendelius17-Aug-08 1:59 
AnswerRe: Stored Procedure help Pin
Colin Angus Mackay16-Aug-08 23:57
Colin Angus Mackay16-Aug-08 23:57 
GeneralRe: Stored Procedure help Pin
Vimalsoft(Pty) Ltd17-Aug-08 2:26
professionalVimalsoft(Pty) Ltd17-Aug-08 2:26 
QuestionUsing SQL Server 8.0 hashes to connect to SQL Server 9.0 Pin
jchalfant16-Aug-08 13:50
jchalfant16-Aug-08 13:50 
NewsRe: Using SQL Server 8.0 hashes to connect to SQL Server 9.0 Pin
jchalfant16-Aug-08 14:12
jchalfant16-Aug-08 14:12 

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.