blogged find better blogs
HomeTechnologyEntertainmentSportsPoliticsBusinessHumorWorld NewsLifestyleDirectoryMore Topics
Blog Detail
Karma Garda's Snippets Diary

A place to keep track of all the little code snippets/problems I run into many times.
Karma Garda's Snippets Diary Blog  
Listed in: Computers > Computer Software, Computers > Programming
Related Topics: .net, code, crm, diary, Snippets, troubleshooting
Author: Karma Garda
Visit this blog on Facebook for more info.
Related Blogs
previous blog next blog

1 Users are Following

8.2
great
based on editor's review


recent postsrss feed

SQL Server - How do I select just the date portion of a datetime field

Nov 13, 2009
There are a few ways to do this, but I find the easiest is to use the float version of a datetime and crop off the decimal portion (right of the decimal place is the time portion) DECLARE @currentDate DateTime SET @currentDate =...

"Failed to pause full-text catalog for backup" while backing up a database

Oct 9, 2009
So you're trying to back up your database and you get the following error: Failed to pause full-text catalog for backup. Backup was aborted. Check to make sure Microsoft Full-text Service is running properly and SQL server service have access to...

"The virtual directory specified already exists"... but it doesn't!

Oct 9, 2009
I've come across this issue intermittently on some servers, but I haven't figured out yet why it happens. The times I've seen it happen is when the virtual folder wasn't created with all the permissions required, and then deleting it seems to leave a...

How to programatically move the mouse in C#

Oct 2, 2009
.Net gives you access the mouse via "Cursor". You can interact with the mouse position like this: Cursor.Position = new Point(Cursor.Position.X + 10, Cursor.Position.Y + 10); Easy peesy

DateTime.Min != SqlDateTime.Min

Sep 29, 2009
Yes, as the title says, .Net DateTime Minimum does not equal Sql Servers equivalent. For whatever reason you come across this gem of an issue you have a couple of options to get around it. 1. Use a .net Nullable datetime instead. i.e. Declare your...


Comments & Reviews:
Be the First to Review this Blog!