- Featured Post
-
Download Bootcamp 4 – drivers for Windows 8 Consumer Preview
Here is how you can download and install Macbook Pro Drivers on Windows 8 Consumer Preview or Windows 7:
- Download Bootcamp 4.0 Drivers, here’s a link on some Apple CDN for the .pkg file containing the drivers:
BootCampESD.pkg -
Open this file with 7Zip in Windows:
Download 7Zip
read more → - Download Bootcamp 4.0 Drivers, here’s a link on some Apple CDN for the .pkg file containing the drivers:
- Featured Post
-
2 Fingre Secondary Click for Mac OS Lion not Working?
I installed Mac Lion as a fresh operating system (without having Mac OS snow leopard) and now my 2 fingre Secondary click (Right Click) is not working. If you are the Mac OS Lion user and your 2 finger secondary click (right-click) is not working then follow the steps to get it working:
read more → - Featured Post
-
The Health Benefits of Coffee vs Tea
Click to EnlargeBy Policy Expert
read more → - Featured Post
-
How to Enable Multi-Touch Gestures in iOS 4.3.1
Follow the instructions to enable multi-touch gestures for iPhon 3GS, iPhone 4, iPod Touch and iPad:
We will be editing 3 plist files in this tutorial. To edit and find .plist files use following application for Windows machine or Mac:- Windows users can use plist editor
- Mac users can use TextWrangler / BBEdit / XCode.
read more → - Featured Post
-
Forgot Your Android Lock xt Password
f you forgot your Android Lock xt Password for your iPhone 3g, 3GS, iPhone 4 or iPod Touch, here are the steps to remove it without restore:
- USB Conncet your iPhone/iPod Touch.
- Since you can’t SSH (If you can then move to next step after making SSH connection) you can use iFunbox [Windows] or iPhone Browser [Mac] to explore your iPhone/iPod’s files. [Use USB based applications like iPhone Explorer or DiskAid to access and replace these files or use SSH using WinSCP or CyberDuck(Mac)]
read more →
Change your login name and database name and Execute following SP:
Exec sp_defaultdb @loginame='imsatasia\Rahul', @defdb='DBName'
OR
- Go to “Object Explorer > Security > Logins”
- Right click your Login and click on “Properties”
- Under General Section, you can change Default Database value in drop down called “Default Database”
Edit HOSTS file
- Launch Terminal, found in /Applications/Utilities/ or launch through Spotlight
- Type the following command at the prompt:
sudo nano /private/etc/hosts
- Enter the administrator password when requested, you will not see it typed on screen as usual with the command line
- Once the hosts file is loaded within nano, use the arrow keys to navigate to the bottom of the hosts file to make your modifications
- When finished, hit Control+O to save the file
- Hit ENTER/RETURN to save changes to /private/etc/hosts
- then hit Control+X to exit out of nano
- Quit out of Terminal when finished
DNS Flush
Use following command in terminal:
dscacheutil -flushcache
SELECT dbo.CMN_FmtPhone('1234567891011')
Output: (123) 456-7891 Ext: 011
SELECT dbo.CMN_FmtPhone('1234567820')
Output: (123) 456-7820
CREATE FUNCTION CMN_FmtPhone
(
@PhoneNumber varchar(15)
)
RETURNS varchar (15)
AS
BEGIN
Declare @returnValue as Varchar(15)
SELECT @returnValue =
CASE
WHEN LEN(LTRIM(RTRIM(@PhoneNumber))) = 10
THEN '(' + SUBSTRING(@PhoneNumber, 1, 3) + ')'
+ ' ' + SUBSTRING(@PhoneNumber, 4, 3)
+ '-' + SUBSTRING(@PhoneNumber, 7, 4)
WHEN LEN(LTRIM(RTRIM(@PhoneNumber))) > 10
THEN '(' + SUBSTRING(@PhoneNumber, 1, 3) + ')'
+ ' ' + SUBSTRING(@PhoneNumber, 4, 3) + '-'
+ SUBSTRING(@PhoneNumber, 7, 4)
+ ' Ext: ' + SUBSTRING(@PhoneNumber, 11, 5)
END
RETURN @returnValue;
END


