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

Database

 
GeneralRe: SQL Advice needed Pin
GuyThiebaut23-Jul-08 10:28
professionalGuyThiebaut23-Jul-08 10:28 
GeneralRe: SQL Advice needed Pin
SomeGuyThatIsMe24-Jul-08 2:41
SomeGuyThatIsMe24-Jul-08 2:41 
GeneralRe: SQL Advice needed Pin
StevenWalsh24-Jul-08 4:40
StevenWalsh24-Jul-08 4:40 
GeneralRe: SQL Advice needed Pin
SomeGuyThatIsMe24-Jul-08 4:47
SomeGuyThatIsMe24-Jul-08 4:47 
QuestionCreating Reports using DataSet Pin
Reality Strikes23-Jul-08 5:19
Reality Strikes23-Jul-08 5:19 
AnswerRe: Creating Reports using DataSet Pin
Wendelius23-Jul-08 6:20
mentorWendelius23-Jul-08 6:20 
GeneralRe: Creating Reports using DataSet Pin
Verghese25-Jul-08 4:57
Verghese25-Jul-08 4:57 
GeneralRe: Creating Reports using DataSet Pin
Wendelius25-Jul-08 9:37
mentorWendelius25-Jul-08 9:37 
QuestionSELECT command Pin
Reality Strikes23-Jul-08 4:33
Reality Strikes23-Jul-08 4:33 
AnswerRe: SELECT command Pin
Harvey Saayman23-Jul-08 4:46
Harvey Saayman23-Jul-08 4:46 
GeneralRe: SELECT command Pin
Reality Strikes23-Jul-08 5:00
Reality Strikes23-Jul-08 5:00 
GeneralRe: SELECT command Pin
Harvey Saayman23-Jul-08 5:57
Harvey Saayman23-Jul-08 5:57 
QuestionAttaching database Pin
hadad22-Jul-08 21:37
hadad22-Jul-08 21:37 
AnswerRe: Attaching database Pin
Colin Angus Mackay23-Jul-08 3:34
Colin Angus Mackay23-Jul-08 3:34 
AnswerRe: Attaching database Pin
Vimalsoft(Pty) Ltd23-Jul-08 5:58
professionalVimalsoft(Pty) Ltd23-Jul-08 5:58 
Questionsql server data transferring?? Pin
Dotnetkanna22-Jul-08 21:34
Dotnetkanna22-Jul-08 21:34 
QuestionMultiple processes with the same ID Pin
JacquesDP22-Jul-08 21:05
JacquesDP22-Jul-08 21:05 
AnswerRe: Multiple processes with the same ID Pin
Wendelius23-Jul-08 6:03
mentorWendelius23-Jul-08 6:03 
QuestionRe: Multiple processes with the same ID Pin
JacquesDP23-Jul-08 18:18
JacquesDP23-Jul-08 18:18 
AnswerRe: Multiple processes with the same ID Pin
Wendelius23-Jul-08 18:43
mentorWendelius23-Jul-08 18:43 
Unfortunately you have to configure parallelism for the whole SQL Server. However you can configure parallel query so that it will not happen so often:

1. set cost threshold for parallelism for a higher value. For example if the value for this is 5, it means that if the operation is expected to take more than 5 seconds, parallelism shall be used. You can increase this value so that only 'long' operations use parallelism (say set theshold to 30 seconds or whatever is suitable).

2. don't let the database use all processors. If you have 4 processors, you can set max degree of parallelism to 2 which means that only 2 processors are used simultaneously. Value 0 means that all processors are used

To list your configuration use either Management studio or by T-SQL by configuring to see advanced options and then listing all option:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure;
GO

Hope that this helps,

Mika
GeneralRe: Multiple processes with the same ID Pin
JacquesDP23-Jul-08 18:47
JacquesDP23-Jul-08 18:47 
GeneralRe: Multiple processes with the same ID Pin
Wendelius23-Jul-08 18:49
mentorWendelius23-Jul-08 18:49 
QuestionStore files in database Pin
kashif63422-Jul-08 20:22
kashif63422-Jul-08 20:22 
AnswerRe: Store files in database Pin
Vimalsoft(Pty) Ltd23-Jul-08 6:02
professionalVimalsoft(Pty) Ltd23-Jul-08 6:02 
AnswerRe: Store files in database Pin
DerekFL25-Jul-08 8:28
DerekFL25-Jul-08 8:28 

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.