Viewing 15 posts - 16 through 30 (of 68 total)
Hi Jenda,
Yes it is possible, I think in addition trying to monitor tempdb where tables are created and dropped on the fly it is going to happen consistently.
I think we...
June 24, 2009 at 2:02 am
Hi Skyline,
It should be fine, but if other files or operations are being included then it is probably best to filter them out at some point.
Ed
June 23, 2009 at 1:18 pm
Hi Jason,
Changing to a BIGINT shouldn't cause any corruption - I will make the changes myself to the article.
If you are getting IO sizes of 256 then it probably means...
June 23, 2009 at 1:15 pm
A ha yes of course, i'll submit a change to the article at some point.
June 23, 2009 at 7:33 am
also if you want to see which of the connections are actually doing something then run this query:
select * from sys.sysprocesses where kpid 0
ed
June 23, 2009 at 6:51 am
It is normally best to leave them. It is quite expensive for applications to create connections to sql so they generally have a pool of connections to use, if...
June 23, 2009 at 6:50 am
Thanks Scott - using DTLoggedExec actually works so I don't know what is wrong but I will just use that, plus as well as working the output is about a...
June 23, 2009 at 6:20 am
It changes to sleeping when it has nothing to do - generally (and this is quite a massive generalization) you want sleeping connections.
June 23, 2009 at 5:54 am
Do you have to use a function? If not you can use the query I posted above to generate the file.
June 23, 2009 at 5:45 am
How about using ROW_NUMBER and adding it to COUNT(*), it isn't terribly pretty but:
SELECT 'Filename_' + CAST((SELECT COUNT(*) FROM #ListOfFiles) + ROW_NUMBER() OVER (ORDER BY filename) AS VARCHAR(MAX)) FROM #ListOfFiles
Ed
June 22, 2009 at 10:15 am
To find out which process is using the cpu, add the counters "Process\ID Process\sqlservr.exe*"
Each instance has an identifier so if you have three instances you will have "sqlservr", "sqlservr#1", "sqlservr#2"...
June 22, 2009 at 10:00 am
Hi Scott, Thanks for the reply.
OK so I have taken the config file setting out of the package and now it isn't trying to use any dtsconfig at all -...
June 22, 2009 at 9:52 am
To get an accurate picture of what is using your cpu you need to use perfmon, Processor\% Processor Usage\All Instances (I normally don't bother to add _Total) and Process\%Processor Usage\All...
June 22, 2009 at 9:13 am
From the registry keys involved it looks like the sqlclr - but on my system when I start the sqlclr it doesn't try to use those keys.
Do you have the...
June 17, 2009 at 1:45 pm
Can you post the process monitor result when you set this filter:
process name = sqlservr.exe
result = Access Denied
and then start sql.
ed
June 15, 2009 at 5:49 am
Viewing 15 posts - 16 through 30 (of 68 total)