by http://webgeektutorials.blogspot.com

Wednesday, March 28, 2012

Download ChromePlus ? It's CoolNovo Now

Looking for Chrome Plus? It's Coolnovo now..

Now it is Maple browser and called  CoolNovo  is a improved chrome kernel, multi-label, multi-window of the green browser. The rapid dual-core, the boss key, privacy protection, ad filtering more than 20 enhancements. It is completely free, no trojan, no virus, no adware plug-in, without any functional limitations, do not bundle any third-party software. Can be the perfect running the Windows 2000/XP/2003/vista/7 and Linux operating systems.

Features
  • Maple browse specialized such as online banking website does not support chrome mode to add IE list so open these URLs will automatically switch to IE mode to open. Users can also add other sites according to their needs for IE list.
  • I Personally like this feature, Mouse gestures are generated when you press and hold the right mouse button to move the mouse track. Skilled in the Maple browser mouse gestures will save you a lot of time and bring you the efficient operation and use of fun. For example, through the left and right mouse gestures to achieve backward forward effect; under the left and right mouse gesture to close the current tab and activate the left and right labels.

Saturday, March 24, 2012

Download Free Pill Identifier App For Android

PILL IDENTIFIER BY Health5C For Android 2.2+

Yesterday was a lovely day, Health5C launched Pill Identifier App for Android 2.2 and up. I truly appreciate work of our developers, each and every one associated with us, Pill Identifier provides us valuable data regarding Pills by imprints, shapes and color. 

Identify those loose pills which you are not sure of. Get the detailed description of over 10000 medications found in the U.S. against Imprint, Shape and Color. Also determine the pills you are searching for based on Name, Pill Images, Strength, Ingredients, Manufacturer and NDC Code.


Powered by Health5C Wellness Solutions (P) Ltdhttp://www.health5c.com


Its FREE Application for Android 2.2 and UP, downloaded https://www.play.google.com

Stay Tuned here for future updates about Pill Identifier by Health5C and  Thanks to everyone who tried out the Pill Identifier! Your feedback will help us further improve Pill Identifier.

Wednesday, March 14, 2012

Tintii Photo Filter 2.6.0 for Adobe Photoshop

Tintii photo filter – a smart photo filter for affecting colour select effects. Also known in the manner that colour popping, think of Schindler’s List’s small quantity girl in red, or the dramatic manner of Sin City. Available as the pair a standalone program, and as a Photoshop stopple-in. 

Tintii 2.6.0 is now available for Windows, Mac OS X and Linux, introducing some recent interface innovations incorporated in Urban Lightscape, restoring plugin support for 32-bit Photoshop under Mac OS X, and fine-tuning the behaviour of lightness sliders. It also features a new application icon designed by the team at Creative Freedom.

Detailed changes are:
  • New application icon.
  • Centred image in preview pane and added textured background.
  • Changed lightness sliders to apply multiplicative rather than additive adjustments.
  • Added info bar for help messages.
  • Separated file types in open and save dialogs.
  • Fixed crashes in 32-bit Photoshop on Mac.

Wednesday, March 7, 2012

SAP Best Practices and Advantages with SQL Server

The advantages of using SAP with SQL Server  include:
  •  Improves performance. Enhancements in SQL Serverenable tune-up and auto-administration features on SAP application deployments.
  • Supports very large databases. mySAP and R/3 installations running on SQL Server  can accommodate larger and more complex databases. Multi-terabyte (TB) databases and 45,000 tables in a single mySAP database are becoming increasingly more common.
  • Offers advanced capabilities as standard features. Customers can take advantage of SQL Server  advanced capabilities such as Database Mirroring, Online Index Create, Database Snapshots, etc.
  • Contains comprehensive data management features. These data management features include advanced data mining, integration services, Extraction Transformation and Loading (ETL), BI, high availability, manageability, and security.
  • Runs on standard commodity servers and storage. SAP customers have two options for licensing SQL Server . When SQL Server is licensed through Microsoft and is used for more than one application, the database is licensed per processor, not per core, as is common with some competitors. This reduces the cost by a factor of three or greater. When SQL Server is licensed through SAP and is used for one application only, even greater savings can be realized.

Friday, March 2, 2012

Download Windows 8 Consumer Preview

Well Microsoft has released Windows 8 Consumer Preview and in a single day reached 1 million download.

Windows 8 Consumer Preview is prerelease software that may be substantially modified before it’s commercially released. Some product features and functionality may require additional hardware or software. If you decide to go back to your previous operating system, you'll need to reinstall it from the recovery or installation media that came with your PC. 

Microsoft says  Your Windows, everywhere , now it is cloud supported and once Sign in to any of your devices running Windows 8 your personalized settings and apps are right there. Windows 8 has two modes. One is called Metro-style and is built on a new "Windows Runtime", a modern mobile operating system in which apps are installed from an online store, sandboxed from one another and from the system for security, and easy to operate with your fingers. The other is the old Windows desktop, still needed by Microsoft for applications like Office and by the rest of us for all our existing applications.

Metro-style Windows follows a different philosophy than desktop Windows. Apps run full-screen (though with an option to have two tiled side by side) and are typically small and simple to use. Microsoft also designed the new runtime to make heavy use of asynchronous functions, which means that applications should remain responsive rather than freezing sulkily when performing long operations.

You can download Windows 8 right here : 



Hope you will like new interface and new experience with Windows 8.

Thursday, March 1, 2012

What happens when SQL Server executes a stored procedure or query ?

SQL Server performs a couple of internal steps before executing a query or stored procedure. The steps that interest us here are compilation and execution.
When SQL Server receives a query for execution, its execution plan may already be present in memory (the procedure cache); if not, SQL Server will have to compile the query before executing it.
The compilation process is divided into four parts: parsing, normalization, compilation and optimization.

Parsing

During this stage, SQL Server checks the query for syntax errors and transforms it into a complier-ready structure that it will use later to optimize the query. It does not check for object names or column names.

Normalization
At this stage, SQL Server checks all references to objects in the query. This is where we typically get the “Object not found” message when an object referenced in the query is not found in the database. SQL Server also checks to see if a query makes sense. For example, we cannot execute a table or select from a stored procedure.
Bear in mind that while we can optimize select, insert, and update statements, there is no way to optimize if, while, and for operators.

Tuesday, February 28, 2012

Detecting IPhone Device

There are few ways you can detect Iphone Device, and tell browser to behave accordingly. The iPhone launched with this user agent:

Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3

Todetect User Agent
Using ASP code
For those on a Windows Server, create a file called user-agent.asp and put the following lines of code in:
<%
Response.Write Request.ServerVariables (“HTTP_USER_AGENT”)
%>
Using PHP Code
For those on Linux based servers
<?php

Friday, February 17, 2012

Data Pump in Oracle Database 10g

Oracle Data Pump is a newer, faster and more flexible alternative to the "exp" and "imp" utilities used in previous Oracle versions. In addition to basic import and export functionality data pump provides a PL/SQL API and support for external tables.

Getting Started

For the examples to work we must first unlock the SCOTT account and create a directory object it can access:
CONN sys/password@db10g AS SYSDBA
ALTER USER scott IDENTIFIED BY tiger ACCOUNT UNLOCK;
GRANT CREATE ANY DIRECTORY TO scott;
 
CREATE OR REPLACE DIRECTORY test_dir AS '/u01/app/oracle/oradata/';
GRANT READ, WRITE ON DIRECTORY test_dir TO scott;

Table Exports/Imports

The TABLES parameter is used to specify the tables that are to be exported. The following is an example of the table export and import syntax:
expdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR 
dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log
 
impdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR 
dumpfile=EMP_DEPT.dmp logfile=impdpEMP_DEPT.log


For example output files see expdpEMP_DEPT.log and impdpEMP_DEPT.log.

The
TABLE_EXISTS_ACTION=APPEND parameter allows data to be imported into existing tables.

Schema Exports/Imports

The OWNER parameter of exp has been replaced by the SCHEMAS parameter which is used to specify the schemas to be exported. The following is an example of the schema export and import syntax:
expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR 
dumpfile=SCOTT.dmp logfile=expdpSCOTT.log
 
impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR 
dumpfile=SCOTT.dmp logfile=impdpSCOTT.log
For example output files see expdpSCOTT.log and impdpSCOTT.log.

Friday, January 6, 2012

Quick intro to SQL Server 2008


What is SQL Server 2008 RDBMS?

SQL Server 2008 is primarily thought of as a Relational Database Management System (RDBMS). It is certainly that, but it is also much more.SQL Server 2008 can be more accurately described as an Enterprise Data Platform. It offers many new features and even more enhanced or improved features from previous editions of the product. In addition to traditional RDBMS duty, SQL Server 2008 also provides rich reporting capabilities, powerful data analysis, and data mining, as well as features that support asynchronous data applications, data-driven event notification, and more.


Database Engine

The Database Engine is the primary component of SQL Server 2008. It is the Online Transaction Processing (OLTP) engine for SQL Server, and has been improved and enhanced tremendously in this version. The Database Engine is a high-performance component responsible for the efficient storage, retrieval, and manipulation of relational and Extensible Markup Language (XML) formatted data.
SQL Server 2008’s Database Engine is highly optimized for transaction processing, but offers exceptional performance in complex data retrieval operations. The Database Engine is also responsible for the controlled access and modification of data through its security subsystem. SQL Server 2008’s Database Engine has many major improvements to support scalability, availability, and advanced (and secure) programming objects.

SQL Server database : Regular maintenance

If you are a DBA it is very important for you to know maintenance plan in SQL Server. Generally we use SQL Enterprise Manager to perform regular maintenance of SQL database.

The information below does not cover everything you can do to maintain your SQL database in SQL Enterprise Manager. Before you must See your SQL documentation for details on what else you can do to maintain your database.

Backing up the transaction log is not compatible with simple recovery. If you have multiple databases with different recovery models, you can create separate database maintenance plans for each recovery model. In this way you can include a step to backup your transaction logs only on the databases that do not use the simple recovery mode.

Change recovery model to simple

Simple recovery mode is recommended because it prevents the transaction logs from swelling. In simple recovery, once a checkpoint is complete, the transaction logs for the time before the checkpoint are dropped from the active database. A checkpoint automatically occurs when the backup is made. We recommend having a database maintenance plan that performs a backup of the ePO database, together with "Simple Recovery". In this way, once a backup is successfully created, the portion of the transaction log in the active database will be dropped as it is no longer needed since a backup file exists.