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

Database

 
AnswerRe: Need Query for this Pin
sujithkumarsl9-Jun-09 19:43
sujithkumarsl9-Jun-09 19:43 
GeneralRe: Need Query for this Pin
_Damian S_9-Jun-09 19:47
professional_Damian S_9-Jun-09 19:47 
GeneralRe: Need Query for this Pin
sujithkumarsl9-Jun-09 20:08
sujithkumarsl9-Jun-09 20:08 
Questioncross query question in access 2007 (sum & avg) Pin
E_Gold9-Jun-09 19:31
E_Gold9-Jun-09 19:31 
AnswerRe: cross query question in access 2007 (sum & avg) Pin
E_Gold9-Jun-09 19:31
E_Gold9-Jun-09 19:31 
AnswerRe: cross query question in access 2007 (sum & avg) Pin
_Damian S_9-Jun-09 19:46
professional_Damian S_9-Jun-09 19:46 
GeneralRe: cross query question in access 2007 (sum & avg) Pin
E_Gold10-Jun-09 0:14
E_Gold10-Jun-09 0:14 
Questionpassword protect sql views Pin
Anoop Brijmohun9-Jun-09 4:57
Anoop Brijmohun9-Jun-09 4:57 
AnswerRe: password protect sql views Pin
Mycroft Holmes9-Jun-09 14:45
professionalMycroft Holmes9-Jun-09 14:45 
Questionconnection parameters in configuration file Pin
Fadi Yoosuf9-Jun-09 4:29
Fadi Yoosuf9-Jun-09 4:29 
AnswerRe: connection parameters in configuration file Pin
Eddy Vluggen9-Jun-09 7:30
professionalEddy Vluggen9-Jun-09 7:30 
AnswerRe: connection parameters in configuration file Pin
Mycroft Holmes9-Jun-09 14:47
professionalMycroft Holmes9-Jun-09 14:47 
QuestionRe: connection parameters in configuration file Pin
Fadi Yoosuf10-Jun-09 8:12
Fadi Yoosuf10-Jun-09 8:12 
AnswerRe: connection parameters in configuration file Pin
Mycroft Holmes10-Jun-09 12:59
professionalMycroft Holmes10-Jun-09 12:59 
QuestionConfusion on Full Text Searching Pin
Brendan Vogt9-Jun-09 3:33
Brendan Vogt9-Jun-09 3:33 
AnswerRe: Confusion on Full Text Searching Pin
Eddy Vluggen9-Jun-09 7:23
professionalEddy Vluggen9-Jun-09 7:23 
QuestionPerfomance Question on the Following Query Pin
Vimalsoft(Pty) Ltd8-Jun-09 22:39
professionalVimalsoft(Pty) Ltd8-Jun-09 22:39 
AnswerRe: Perfomance Question on the Following Query Pin
J4amieC8-Jun-09 23:00
J4amieC8-Jun-09 23:00 
GeneralRe: Perfomance Question on the Following Query Pin
Vimalsoft(Pty) Ltd8-Jun-09 23:11
professionalVimalsoft(Pty) Ltd8-Jun-09 23:11 
AnswerCan you cache the data ? Pin
David Mujica9-Jun-09 2:48
David Mujica9-Jun-09 2:48 
GeneralRe: Can you cache the data ? Pin
Vimalsoft(Pty) Ltd9-Jun-09 20:57
professionalVimalsoft(Pty) Ltd9-Jun-09 20:57 
GeneralCheck the Execution Plan Pin
David Mujica10-Jun-09 3:28
David Mujica10-Jun-09 3:28 
Good to hear things are working for you. You may want to use the option called "Display Estimated Execution Plan" in Studio Manager to see exactly how this store procedure is executing.

1) In the query window, do something like EXEC sp_Staff_Select "M"
2) From the Query menu, select the "Display Estimated Execution Plan"
check the results, you want to make sure that it is not performing any "scans", but rather it uses "seeks". A scan means that it is reading the table or index top to bottom ... lots of I/O.

My reason for suggesting this is that I don't believe your index on "Descr" is being used. Suspicious | :suss:

Check it out. If nothing else, it will show you how you can use the execution plan to help you optimize your queries. Thumbs Up | :thumbsup:
GeneralRe: Check the Execution Plan Pin
Vimalsoft(Pty) Ltd10-Jun-09 3:33
professionalVimalsoft(Pty) Ltd10-Jun-09 3:33 
QuestionDB2 Update Query Problem Pin
DBLearner8-Jun-09 6:38
DBLearner8-Jun-09 6:38 
AnswerRe: DB2 Update Query Problem Pin
Kschuler8-Jun-09 11:20
Kschuler8-Jun-09 11:20 

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.