Click here to Skip to main content
15,895,557 members
Home / Discussions / Database
   

Database

 
GeneralTerminal Services Web Connection via ado(using c++) Pin
BP potato12-Nov-02 16:44
sussBP potato12-Nov-02 16:44 
GeneralDecimal precision Creating Table Pin
Anonymous12-Nov-02 8:19
Anonymous12-Nov-02 8:19 
GeneralRe: Decimal precision Creating Table Pin
Mazdak12-Nov-02 18:56
Mazdak12-Nov-02 18:56 
GeneralRe: Decimal precision Creating Table Pin
Anonymous13-Nov-02 5:40
Anonymous13-Nov-02 5:40 
GeneralRe: Decimal precision Creating Table Pin
Mazdak13-Nov-02 8:07
Mazdak13-Nov-02 8:07 
GeneralRe: Decimal precision Creating Table Pin
José Luis Sogorb14-Nov-02 5:03
José Luis Sogorb14-Nov-02 5:03 
GeneralRe: Decimal precision Creating Table Pin
Mazdak14-Nov-02 5:08
Mazdak14-Nov-02 5:08 
Generalproblem saving binary data into a file Pin
trozner12-Nov-02 6:16
trozner12-Nov-02 6:16 
QuestionYukon (SQL Server 2003) Questions? Pin
Larry Maccherone12-Nov-02 5:50
Larry Maccherone12-Nov-02 5:50 
GeneralHelp with ADO namespace error Pin
Paul Silvernail12-Nov-02 5:22
Paul Silvernail12-Nov-02 5:22 
GeneralRe: Help with ADO namespace error Pin
Mazdak12-Nov-02 5:31
Mazdak12-Nov-02 5:31 
GeneralRe: Help with ADO namespace error Pin
Paul Silvernail12-Nov-02 7:12
Paul Silvernail12-Nov-02 7:12 
GeneralDataSets or Direct Manipulation Pin
Sijin12-Nov-02 1:55
Sijin12-Nov-02 1:55 
GeneralRe: DataSets or Direct Manipulation Pin
Rob Graham18-Nov-02 10:58
Rob Graham18-Nov-02 10:58 
GeneralRe: DataSets or Direct Manipulation Pin
Sijin18-Nov-02 13:59
Sijin18-Nov-02 13:59 
GeneralRe: DataSets or Direct Manipulation Pin
Rob Graham18-Nov-02 17:14
Rob Graham18-Nov-02 17:14 
Depends on what you mean by large Smile | :) ... If you plan to keep several million rows of two or three hundred columns in memory as a read only db, I would think this would strain even a large box. Not too sure the class is thread-safe for multiple readers(enumerators...), pretty certain it is unsafe for multiple writers. We were working with a 30GB database,so no thought of keeing it in ram. Datasets/DataAdapters are not real performant for heavy insert/update use, sqlcommands with stored procs work best for this, and sqlDataReaders are much more performant for populating read-only caches...
The DataSet is a rather complex structure, carring a lot of overhead (duplicate copies of all the data, state information for every row, complete schema information... really is an in-memory db of sorts)
Also, the remoting issue is just as severe when passing data between processes in the same box (appdomain to appdomain). We were fairly convinced that this resulted in real memory leaks with datasets of 10000 rows x 300 columns or so (worse if multiple datatables adding up to this..)

OldRob
GeneralDatabase Table synchronization Pin
johnb11-Nov-02 16:40
johnb11-Nov-02 16:40 
QuestionWhy my program not connect to oracle on other pc? Pin
sages11-Nov-02 16:12
sages11-Nov-02 16:12 
GeneralADOX: Using Append with adDBTimeStamp Problem in Visual C++ .net Pin
Bart-Man11-Nov-02 4:53
Bart-Man11-Nov-02 4:53 
GeneralRe: ADOX: Using Append with adDBTimeStamp Problem in Visual C++ .net Pin
Mazdak11-Nov-02 8:35
Mazdak11-Nov-02 8:35 
GeneralRe: ADOX: Using Append with adDBTimeStamp Problem in Visual C++ .net Pin
Bart-Man11-Nov-02 9:19
Bart-Man11-Nov-02 9:19 
GeneralRe: ADOX: Using Append with adDBTimeStamp Problem in Visual C++ .net Pin
Mazdak11-Nov-02 20:05
Mazdak11-Nov-02 20: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.