Navigation

Search

Categories

On this page

Code Humor
Now selling Grelling–Nelson premium coffee, powered with premium coffee beans.
Forcing an MS SQL Database to close connections

Archive

Blogroll

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

RSS 2.0 | Atom 1.0 | CDF

Send mail to the author(s) E-mail

Total Posts: 120
This Year: 1
This Month: 0
This Week: 0
Comments: 40

Sign In
Pick a theme:

# Thursday, October 11, 2007
Thursday, October 11, 2007 4:55:01 PM (Mountain Daylight Time, UTC-06:00) ( )

public string ConjunctionJunction(string words, string phrases, string clauses)
{
return (String)(words + phrases + clauses);
}

original props go to rlemon at http://www.codingforums.com

Comments [0] | | # 
# Wednesday, September 19, 2007
Wednesday, September 19, 2007 12:49:39 PM (Mountain Daylight Time, UTC-06:00) ( )

You might know that I'm a very adamant Microsoft.Net guy. As such, it's always highly amusing to me when I see 'the other side of the universe' talk about how their product is so very very good, by self referencing itself during the install process.

I'm sure glad they cleared that up. I thought I was going to have Java that was powered by Kittens. I'm sure glad that Java does in fact power itself.

Is that the best these people's marketing professionals can come up with? An autological phrase? Puh-lease.

Maybe they really do power it with kittens... which in turn are hopped up on Java... that would be so much cooler.

Comments [0] | | # 
# Wednesday, July 25, 2007
Wednesday, July 25, 2007 10:08:28 AM (Mountain Daylight Time, UTC-06:00) ( )

use master
ALTER DATABASE <database>
SET SINGLE_USER WITH ROLLBACK IMMEDIATE

-- do work here

use master
ALTER DATABASE <database> SET MULTI_USER WITH ROLLBACK IMMEDIATE;

Comments [0] | | #