Click here to Skip to main content
16,008,075 members
Home / Discussions / Database
   

Database

 
Generalrollback triggers Pin
dmanoharan24-Nov-02 22:24
dmanoharan24-Nov-02 22:24 
GeneralRe: rollback triggers Pin
Rob Graham25-Nov-02 17:39
Rob Graham25-Nov-02 17:39 
GeneralLicense Question Pin
Roger Wright24-Nov-02 20:11
professionalRoger Wright24-Nov-02 20:11 
GeneralRe: License Question Pin
SimonS24-Nov-02 20:25
SimonS24-Nov-02 20:25 
GeneralRe: License Question Pin
Roger Wright24-Nov-02 20:43
professionalRoger Wright24-Nov-02 20:43 
Questionhow can i repair and compact the access2000 database using ado in vc? Pin
whelk24-Nov-02 17:34
whelk24-Nov-02 17:34 
AnswerRe: how can i repair and compact the access2000 database using ado in vc? Pin
John Wong27-Nov-02 22:13
John Wong27-Nov-02 22:13 
GeneralRe: how can i repair and compact the access2000 database using ado in vc? Pin
whelk1-Dec-02 16:10
whelk1-Dec-02 16:10 
GeneralRe: how can i repair and compact the access2000 database using ado in vc? Pin
whelk2-Dec-02 14:04
whelk2-Dec-02 14:04 
GeneralRe: how can i repair and compact the access2000 database using ado in vc? Pin
John Wong2-Dec-02 21:34
John Wong2-Dec-02 21:34 
GeneralRe: how can i repair and compact the access2000 database using ado in vc? Pin
whelk2-Dec-02 22:38
whelk2-Dec-02 22:38 
GeneralRe: how can i repair and compact the access2000 database using ado in vc? Pin
John Wong3-Dec-02 22:09
John Wong3-Dec-02 22:09 
GeneralRe: Milli second resolution in DateTime Pin
Rob Graham23-Nov-02 6:12
Rob Graham23-Nov-02 6:12 
GeneralRe: Milli second resolution in DateTime Pin
Majid Shahabfar26-Nov-02 0:34
Majid Shahabfar26-Nov-02 0:34 
QuestionRecordCount Property return me -1? Pin
anju22-Nov-02 2:07
anju22-Nov-02 2:07 
AnswerRe: RecordCount Property return me -1? Pin
Nick Parker22-Nov-02 2:25
protectorNick Parker22-Nov-02 2:25 
GeneralRe: RecordCount Property return me -1? Pin
anju22-Nov-02 20:46
anju22-Nov-02 20:46 
GeneralTrying to close Access DB while app running... Pin
LukeV21-Nov-02 9:11
LukeV21-Nov-02 9:11 
GeneralRe: Trying to close Access DB while app running... Pin
Rob Graham21-Nov-02 10:14
Rob Graham21-Nov-02 10:14 
GeneralRe: Trying to close Access DB while app running... Pin
LukeV22-Nov-02 3:10
LukeV22-Nov-02 3:10 
GeneralRe: Trying to close Access DB while app running... Pin
Rob Graham22-Nov-02 8:17
Rob Graham22-Nov-02 8:17 
GeneralOpinon: Direct remote access to SQL Server Pin
clintsinger21-Nov-02 6:17
clintsinger21-Nov-02 6:17 
GeneralRe: Opinon: Direct remote access to SQL Server Pin
Rob Graham21-Nov-02 8:04
Rob Graham21-Nov-02 8:04 
1. Unless you enable protocol encryption the data is transferred a a binary stream (TDS- Tabular Data Services) protocol for the marshalling - SQL proprietary format. The Schema will also be there if it would have been there on a local call.
2. Performance is better than marshalling datasets, but will depend on the speed and available bandwidth of the network connection.
3.Security is more of an issue, and will depend on how you set up SQL. Best is NT authentication(Trusted_connection=yes in connection string), but this requires that the client either be in the same NT domain, or that the user on the client have an account on the server with identical username and password and that account has necessay priveleges to talk to the db in question.
4. Use TCPIP net protocol for best performance (Network=dbmssocn in connection string). Design the application to minimize round trips to the server. Use connection pooling on the client. Use stored procedures werever possible.
Read the SQL dos & donts article All of the advice applies...

Good luck

Rob


Trust NoOne...
GeneralSQL Server OLEDB Provider and Narrow Characters Pin
Jörgen Sigvardsson20-Nov-02 22:57
Jörgen Sigvardsson20-Nov-02 22:57 
GeneralSQL Server Syntax for a CROSSTAB QUERY from MSAccess Pin
acosmin19-Nov-02 22:42
acosmin19-Nov-02 22:42 

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.