Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Kaysen

  1. Kaysen

    Threads cpu usage problem

    It seems there's an SQLServer bottleneck problem, I have to do some additional monitoring of the application to find out. If I come across something usefull, I'll post it here. Thanks for the quick reply :)
  2. Kaysen

    Can I use .NET to zip/compress folders/files?

    I use something like this Process unzip = new Process(); unzip.StartInfo.FileName = "C:\\gzip.exe"; unzip.StartInfo.Arguments = "-d C:\\file.gz"; '-d for decompress unzip.Start(); unzip.WaitForExit(); int UnzipInfo = unzip.ExitCode; gzip.exe doesn't compress folders only...
  3. Kaysen

    Threads cpu usage problem

    Hi all, I'm running a high-priority application with two threads, no priorities set on threads. I get weird cpu usage behaviour 1. thread 2.thread CPU usage ------------------------------------------- c# c# 50%-50% sql c#...

Part and Inventory Search

Back
Top