Connecting to Oracle is slow on ADO.NET under Vista

Our application uses the “System.Data.OracleClient” library to connect to our Oracle database.  Something like this: OracleConnection connection = new OracleConnection( "Data Source=prod8a;User Id=bugnav;Password=bugnav"); DateTime startTime = DateTime.Now; connection.Open(); Console.WriteLine(DateTime.Now - startTime); Normally code like this would connect to Oracle in WELL under one second.  However, under Vista, the first time I run this it takes ...

Bingo

We were playing Bingo at work.  I had 14 bingo cards.  It was annoying having to mark off things on each card so I opted for a computer program.  I converted my cards into digits and as the numbers came in I got instant sorted results as to which cards were winning, which numbers were ...