Google Earch Hour 2009

Join Earth Hour Tonight and Save energey :

Excerpts:

Earth Hour invites one billion people in more than 2800 cities representing 83 countries to turn off their lights for one hour – tonight, Saturday, March 28 from 8:30pm to 9:30pm in their local time zone. On this day, cities around the world, including Paris, Sydney, London, Cairo, New York, Los Angeles and Cape Town, will join together to demonstrate their commitment to energy conservation and sustainability. Here's how you can participate:

  • All you have to do to Vote Earth is turn your lights out for one hour tonight, Saturday, March 28 from 8:30pm to 9:30pm local time, in your city. Your light switch is your vote!
  • Set your computer's power management and save up to $60 on your electricity bill and nearly half a ton of C02 over the next twelve months. Climate Savers Computing Initiative provides instructions on how you can save electricity all year long through efficient computing.
  • Join Earth Connect and share your opinions about climate change through blogs, e-mails, and Twitter. The goal is to gather one billion words to present at the United Nations Climate Change Conference in Copenhagen in December.
  • If you are affiliated with a college, help your university reduce its environmental impact by adopting green computing practices. Pledge to Power Down for the Planet and create a video to teach others about the importance of energy efficient computing in the fight against climate change.

To read full detail click the below link.....

http://www.google.com/intl/en/earthhour/2009/

Is the above link useful to you? Let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.

Tips from Top Support Calls



Some useful points to remember if you are using a computer

Excerpts:

A lot may look like no brainers, but remember these are lessons from
TOP calls.  With his permission I've listed them here (some text and
links added by me).
• Do you know your backup frequency and last successful backup?  You
would be surprised how many customers call support with catastrophic
failure and have no backup to recover with.
• Are you monitoring all
your disks?  If you did a simple/basic all in one install is it all on
one drive that you are watching?  Disk space available on WFE and SQL,
common support issue is Basic install running out of drive space for SQL
• When
you enumerate your site collections in your farm are the URLs correct? 
Are you using localhost or servernames?  If you are are you using
alternate access mappings.  AAM not set or misconfigured is common. 
This is a top support issue and one to watch out for.  If you are
confused about these check out the SharePoint blog which has 3 posts on
what every administrator needs to know about alternate access mappings.
http://blogs.msdn.com/sharepoint/archive/2007/03/06/what-every-sharepoint-administrator-needs-to-know-about-alternate-access-mappings-part-1.aspx
• Changing
permissions behind the back of SharePoint on the installation
directories, home directories, where the app pool doesn't have
appropriate permissions can and will break the farm silently
(browse/read access often will look good) without you realizing it -
Permissions check, do all of the managed directories owned by WSS/MOSS
have default or expected permissions configured
• Ensure that each
content database in the manage web application manage databases has a
server assigned for indexing - Search, are content databases assigned
to an indexer (WSS Search top support issue)
• Kerberos more secure
right?  It is more complex, no question, but it can be worth it.  If
Kerberos is enabled does customer have an SPN configured, http://support.microsoft.com/kb/832769
• One
of the more common problems I've seen... Status of service accounts,
are any service account passwords expired or otherwise broken, http://support.microsoft.com/kb/934838
• If large file support is enable are the myriad of configuration settings to make this work configured, http://support.microsoft.com/?id=925083
• Scan the SharePoint farm and report if any of our capacity limits are exceeded, http://technet2.microsoft.com/WindowsServer/WSS/en/library/2aa12954-2ea7-475c-9dce-663f543820811033.mspx
• SMTP
relay or anonymous relay - Ensure outgoing email server settings set
correctly and can we relay through specified SMTP server (you can
verify by using telnet to the SMTP server and if we get 220 then it's
successful)
• Is Client Integration turned on even though we don’t support it with Forms Auth (warning/caution)
• SQL
and OS versions - Is SharePoint deployed on a supported OS.  Common
problem is for MOSS customer dose not have SQL 2005 SP 2 installed and
Search breaks, WSS 3.0/MOSS 2007 is not supported on Windows 2000/NT 4.0
• Does
web server administrator have admin permissions on SQL server to run
stsadm?  Stsadm runs in context of logged in user and must have service
account level permissions on SQL to run commands.  Also ensure app pool
account when switching has appropriate access.
• Remember, remember to install prerequisite service packs and run prescan as successful before upgrade.
• Ensure that a domain account is used to connect to the databases prior to upgrade


~~~~~~~~~~~~~~~~~~

Click here to read full article

An Ideal Shopping Cart

Think you can create a good enough shopping cart ?

Think twice......

Have a look at this one >>> Visit the Cart

(Dont forget to turn on the sound !!!)



Is the above link useful to you? Let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.

CountBusinessDays


A good functions that everyone can use to Calculate Business Days between two dates.

Click here to view the original link


Excerpts:

Working with Access, I needed to calculate business days between
dates, excluding holidays, and with an eventual conversion fo the DB to
SQL Server, rewrote the VBA into an SQL function, below:


set ANSI_NULLS ON

set QUOTED_IDENTIFIER ON

go


— =============================================

— Author: James Igoe

— Create date: 2008-08-29

— Description: Calculates business days between 2 dates

— =============================================

ALTER FUNCTION [dbo].[Fx_WorkdayCount]

(

@sStartDate As DATETIME,

@sEndDate As DATETIME

)

RETURNS SMALLINT

AS

BEGIN

— Declare the return variable here

DECLARE @BusinessDays SMALLINT


DECLARE @intDaysTotal As SMALLINT

DECLARE @intDaysWeeks As SMALLINT

DECLARE @intRemainder As SMALLINT

DECLARE @intRemainderPost As SMALLINT

DECLARE @intRemainderPre As SMALLINT


SET @intDaysTotal = DateDiff(day, @sEndDate, @sStartDate)

SET @intDaysWeeks = ((@intDaysTotal / 7) * 5)

SET @intRemainder = @intDaysTotal % 7


IF @intRemainderPre = 1

SET @intRemainder = @intRemainder - 1

ELSE IF @intRemainderPre = 7

SET @intRemainder = @intRemainder - 2


IF @intRemainderPost = 1

SET @intRemainder = @intRemainder - 1

ELSE IF @intRemainderPost = 7

SET @intRemainder = @intRemainder - 2


IF (@intRemainderPost < @intRemainderPre) And @intRemainderPre <> 7

SET @intRemainder = @intRemainder - 2


Sending mail from SharePoint


A very good link that shows how to send mail from SharePoint using .Net code.

Click here to visit the original site !!!