Click here to Skip to main content
15,920,632 members
Home / Discussions / Database
   

Database

 
AnswerRe: Has anyone found a workaround for VC++ 6.0 when using Access 2K? Pin
basementman7-Jul-03 4:34
basementman7-Jul-03 4:34 
AnswerRe: Has anyone found a workaround for VC++ 6.0 when using Access 2K? Pin
Giles11-Jul-03 0:05
Giles11-Jul-03 0:05 
Generalif else Pin
pnpfriend3-Jul-03 10:43
pnpfriend3-Jul-03 10:43 
GeneralRe: if else Pin
Bo Hunter3-Jul-03 18:13
Bo Hunter3-Jul-03 18:13 
GeneralRe: if else Pin
Alexandru Savescu4-Jul-03 1:26
Alexandru Savescu4-Jul-03 1:26 
GeneralRe: if else Pin
Gaurav Bindlish8-Jul-03 9:43
Gaurav Bindlish8-Jul-03 9:43 
Generalsql query question Pin
pnpfriend3-Jul-03 8:40
pnpfriend3-Jul-03 8:40 
GeneralRe: sql query question Pin
Daniel Turini3-Jul-03 9:32
Daniel Turini3-Jul-03 9:32 
Well, the way to go would definitively be by creating a computed column. See MSDN for details on how to do this with the CREATE TABLE command. The expression you need is something like this:

k1 + ';' + k2 + ';' + k3

so, the column on the create table would be defined as:

allk as k1 + ';' + k2 + ';' + k3


Doing things this way, you won't need storage space for allk, and it will be calculated as needed.
Another (better, in most cases) way is by using a view.


ORACLE One Real A$#h%le Called Lary Ellison
GeneralRe: sql query question Pin
pnpfriend3-Jul-03 10:01
pnpfriend3-Jul-03 10:01 
GeneralRe: sql query question Pin
pnpfriend3-Jul-03 10:32
pnpfriend3-Jul-03 10:32 
GeneralSQLOLEDB Driver and Transactions Pin
Jörgen Sigvardsson2-Jul-03 5:10
Jörgen Sigvardsson2-Jul-03 5:10 
QuestionCan anyone Help? Pin
Itanium1-Jul-03 20:26
Itanium1-Jul-03 20:26 
General@@IDENTITY and OleDbType Pin
Bo Hunter1-Jul-03 17:54
Bo Hunter1-Jul-03 17:54 
GeneralRe: @@IDENTITY and OleDbType Pin
andyharman7-Jul-03 8:39
professionalandyharman7-Jul-03 8:39 
GeneralRe: @@IDENTITY and OleDbType Pin
andyharman7-Jul-03 8:43
professionalandyharman7-Jul-03 8:43 
GeneralSQL server problem Pin
Shah Shehpori1-Jul-03 7:08
sussShah Shehpori1-Jul-03 7:08 
GeneralRe: SQL server problem Pin
basementman1-Jul-03 7:43
basementman1-Jul-03 7:43 
GeneralRe: SQL server problem Pin
Shah Shehpori1-Jul-03 18:08
sussShah Shehpori1-Jul-03 18:08 
GeneralRe: SQL server problem Pin
Daniel Turini3-Jul-03 9:41
Daniel Turini3-Jul-03 9:41 
GeneralMaxDate Pin
sardinka30-Jun-03 7:32
sardinka30-Jun-03 7:32 
GeneralRe: MaxDate Pin
basementman1-Jul-03 6:13
basementman1-Jul-03 6:13 
GeneralRe: MaxDate Pin
sardinka1-Jul-03 9:39
sardinka1-Jul-03 9:39 
GeneralRe: MaxDate Pin
basementman1-Jul-03 9:41
basementman1-Jul-03 9:41 
GeneralEasy question ADO.net in VS .net Pin
Taylor Allen Software30-Jun-03 4:33
Taylor Allen Software30-Jun-03 4:33 
GeneralODBC connection question Pin
-- NA --29-Jun-03 21:54
-- NA --29-Jun-03 21:54 

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.