Click here to Skip to main content
15,902,492 members
Home / Discussions / Database
   

Database

 
GeneralRe: OutputDebugString / Trace in SQL Pin
Green Fuze31-Jan-09 21:43
Green Fuze31-Jan-09 21:43 
GeneralRe: OutputDebugString / Trace in SQL Pin
Wendelius1-Feb-09 7:05
mentorWendelius1-Feb-09 7:05 
GeneralRe: OutputDebugString / Trace in SQL Pin
Mycroft Holmes1-Feb-09 14:23
professionalMycroft Holmes1-Feb-09 14:23 
GeneralRe: OutputDebugString / Trace in SQL Pin
Wendelius1-Feb-09 18:11
mentorWendelius1-Feb-09 18:11 
GeneralRe: OutputDebugString / Trace in SQL Pin
Mycroft Holmes1-Feb-09 18:14
professionalMycroft Holmes1-Feb-09 18:14 
GeneralRe: OutputDebugString / Trace in SQL Pin
Wendelius1-Feb-09 18:36
mentorWendelius1-Feb-09 18:36 
Questionspeed up read and write on access table with ado [modified] Pin
sal2131-Jan-09 7:39
sal2131-Jan-09 7:39 
AnswerRe: speed up read and write on access table with ado Pin
Wendelius31-Jan-09 8:15
mentorWendelius31-Jan-09 8:15 
There's not much on your post to work with but few things you should check:

Is the connect slow. If the connect is slow, you should try to find a way to speed up finding the server and the share. Since you use names for server, perhaps DNS is responding slowly etc. Talk with the people responsible for your network. Also you can try to use IP-address instead of server name.

Slow selects, how much data do you transfer. If you need for example just one row in your application, do you fetch all rows from a table in database and then filter the data in the application. Always use the filtering abilities of the database. Also do not select columns you don't need.

Slow modifications, try to make all modifications at once. For example avoid situations where you first insert a row and then later update it. If you have such operations, prepare the data as much as you can before transfering it to the database.

Modeling, perhaps some operations are slow because of the data modeling. Review your relational model critically and for example eliminate duplicate data, normalize etc.

And of course check that the network is working correctly. For example copy a big file to that directory and see if it's copied in reasonable time.

The need to optimize rises from a bad design.My articles[^]

AnswerRe: speed up read and write on access table with ado Pin
Rob Graham1-Feb-09 5:55
Rob Graham1-Feb-09 5:55 
QuestionReport Builder - Reporting Services 2005 Pin
cbe_pav31-Jan-09 2:03
cbe_pav31-Jan-09 2:03 
QuestionDamn database wizard! Pin
Muammar©31-Jan-09 1:52
Muammar©31-Jan-09 1:52 
AnswerRe: Damn database wizard! Pin
Wendelius31-Jan-09 2:55
mentorWendelius31-Jan-09 2:55 
GeneralRe: Damn database wizard! Pin
Muammar©31-Jan-09 5:57
Muammar©31-Jan-09 5:57 
GeneralRe: Damn database wizard! Pin
Wendelius31-Jan-09 6:09
mentorWendelius31-Jan-09 6:09 
GeneralRe: Damn database wizard! Pin
Muammar©31-Jan-09 20:02
Muammar©31-Jan-09 20:02 
GeneralRe: Damn database wizard! Pin
Wendelius1-Feb-09 7:10
mentorWendelius1-Feb-09 7:10 
GeneralRe: Damn database wizard! Pin
Muammar©7-Feb-09 4:15
Muammar©7-Feb-09 4:15 
QuestionHow to pass table name dynamically for stored procedure Pin
ashok_rgm30-Jan-09 19:12
ashok_rgm30-Jan-09 19:12 
AnswerRe: How to pass table name dynamically for stored procedure Pin
Wendelius30-Jan-09 19:36
mentorWendelius30-Jan-09 19:36 
GeneralRe: How to pass table name dynamically for stored procedure Pin
Colin Angus Mackay31-Jan-09 1:20
Colin Angus Mackay31-Jan-09 1:20 
GeneralRe: How to pass table name dynamically for stored procedure Pin
Wendelius31-Jan-09 1:40
mentorWendelius31-Jan-09 1:40 
GeneralRe: How to pass table name dynamically for stored procedure Pin
ashok_rgm31-Jan-09 3:20
ashok_rgm31-Jan-09 3:20 
GeneralRe: How to pass table name dynamically for stored procedure Pin
Wendelius31-Jan-09 3:28
mentorWendelius31-Jan-09 3:28 
GeneralRe: How to pass table name dynamically for stored procedure Pin
ashok_rgm1-Feb-09 23:57
ashok_rgm1-Feb-09 23:57 
GeneralRe: How to pass table name dynamically for stored procedure Pin
Wendelius2-Feb-09 5:36
mentorWendelius2-Feb-09 5:36 

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.