Friday, December 2, 2011

Adding a HTML/JAVASCRIPT to your BLOGGER

Sign In to YOUR Blogger

And Click On DESIGN On your Dashboard.




Now Click On Add a Gadget.





Now in the Pop-up Window Scroll down to find HTML/JAVASCRIPT




Click On the HTML/JAVASCRIPT icon and in the opened window paste the code and save .




NOW You can view your Blog with the code working.

Earn From Your Blog For FREE

Its very good to have money when some one visits your blog.
Here is a easiest and free way of doing it.

Click Here to Register



Click On JOIN NOW and provide details and REGISTER.

Now Confirm Your Email ADDRESS and Login.



NOW CLICK ON TOOLS AND THEN ON WEBSITE ENTRY SCRIPT



COPY THE SCRIPT AND PLACE IT ON YOUR BLOG as HTML/JAVASCRIPT.

Happy Earning

Tuesday, November 29, 2011

Error Importing Oracle OLAP Cube

I got a problem today when importing an Oracle OLAP cube using the Administration Tool in OBIEE 11g Administration Tool .The error message:

[nQSError: 77005] An invalid parameter was passed to the nQWebIBotAPI.dll. Verify that the Agent configuration is correct.

When you install the client tools it creates a simple version of the server using the same files as the full install. One thing that misses out is a JavaHost ,so it is necessary to point the Admin Tool at a JavaHost running on another machine. To do this

I edited:
C:\Program Files\Oracle Business Intelligence Enterprise Edition Plus Client\oraclebi\orainst\config\OracleBIServerComponent\coreapplication\NQSConfig.INI

In the [JAVAHOST] section I put:
JAVAHOST_HOSTNAME_OR_IP_ADDRESSES = “I.P of BI Server”:9810;

After restarting the Admin Tool I was able to import the cubes as expected.

Case Insensitive search in OBIEE11g

As you all know we had a limitation for case insensitive search for multi-select prompt in OBIEE 10g (Later Oracle released a patch for this).
Now in OBIEE11g you can enable this feature we need to modify instanceconfig.xml and NQSconfig.ini files as shown below:

1. Add the following command in instanceconfig.xml: located in
//instances/instance1/config/OracleBIPresentationServicesComponent/coreapplication_obips1

————-

true

——-

Save Instanceconfig.xml file.

2. Open the Nqsconfig.INI located in //instances/instance1/config/OracleBIServerComponent/coreapplication_obis1 and search for CASE_SENSITIVE_CHARACTER_COMPARISON and change this values to OFF as shown below.
CASE_SENSITIVE_CHARACTER_COMPARISON = OFF;
Save NQSconfig.ini file.

3. Restart the OPMN services (All OBIEE services).
Now check the same with multi-select prompt with some string and you should get the values irrespective of case what you have given.

Connection failed while Importing Tables using Admin Tool in OBIEE 11g

Got the “The connection has failed” error while trying to import database tables into repository (.rpd) using OCI call interface.
Solution:
1. Copy the tnsnames.ora from Oracle Database home (ORACLE_HOME\NETWORK\ADMIN\) to the following locations.
o \OracleBI1\network\admin (Example: C:\OBI\Oracle_BI1\network\admin)
o \oracle_common\network\admin
o (Example: C:\OBI\oracle_common\network\admin)

2. Set the TNS_ADMIN environment variable value with one of the copied locations in the step 1 in user.cmd or user.sh file depending on your OS.
This file will be found under \instances\instance1\bifoundation\OracleBIApplication\coreapplication\setup
(Example : C:\OBI\instances\instance2\bifoundation\OracleBIApplication\coreapplication\setup)

Sunday, November 20, 2011

Earn Income when you are at work

Ways To Make Money On Internet There Are Different Ways To Get Money On Internet But Before

Ways To Make Money On Internet there are different ways to get money on internet but before starting this there are some steps to follow them

1): you need some tools *dedicated credit card for internet. *open free internet banking accounts to receive payment. *an always Online internet connection.

2):programs where you need to invest some money, the risk is greater but reward is
huge. *high yield investment program *paying the foreign exchange market

3):programs where you earn money but free to join *DonkeyMails *Clixsense *MyLot *PetPaidTo *Cashcrate

4):make a website of your own and get advertise on it tips: *right click on login page of each program *write address and login details of each site in the back of
your diary *get in to the habit of regular visits

Wednesday, September 21, 2011

NOD32 ANTIVIRUS Username/Password

Username: EAV-51161356
Password: j8rva8xx3p

Username: EAV-51161357
Password: vex483x6r6

Username: EAV-51161360
Password: fa763n83he

Username: EAV-51161362
Password: nx73uhjrja

Username: EAV-51161364
Password: um7vpcuek5

Username: EAV-51171031
Password: r4s5xtc5fn

Username: EAV-51171037
Password: 7xfekux4pn

Username: EAV-51172655
Password: b2p3heusc2

Cash from your website

affiliate program

EARN INCOME FROM YOUR WEBSITE

Turn your valuable web site visitors into income. Work online and join our free money making affiliate program. We offer the most commission rate to help increase your income stream.

Join our revenue making program absolutely no charge and 100% risk free.

Sign Up...

Get paid after you stop working

Set up multiple new income streams each and every month. Get paid after you stop working or even retire at an young age with a broad profit stream. Do this once and get paid over and over again. It's best way to create amazing new levels of money and prosper on the online.

Mountain a steady stream of money

Our make money system helps you to generate a constant stream of money, 24 hours a day, 7 days a week, 365 days a year. Allowing you more time to focus on the things you love.
You will even receive income while you sleep!

FREE INVESTMENT PROGRAM

We designed this make money system specifically for NO SETUP FEE methods, to make hundreds, if not millions of dollars, without spending dollars.

The Best of The Best - Our new communication solutions!!! Coolest software for you. Magnificent HTML Project Design Combo. Beauty Video Coder Centre. Ultra Great Camera MPEG4 Watching Suite. Friendly 3D Internet Creation Package. Fantastic Online Video Stations Assistan. Ultra Pretty Mobile Phone Surveillance C.

Sunday, September 18, 2011

Tomcat 7 Downloads

Welcome to the Tomcat 7.x download page.

This page provides download links for obtaining the latest version of Tomcat 7.0.x.

DOWNLOAD

You must verify the integrity of the downloaded files. We provide PGP signatures for every release file. This signature should be matched against the KEYS file which contains the PGP keys of Tomcat's Release Managers. We also provide an MD5 checksum for every release file. After you download the file, you should calculate a checksum for your download, and make sure it is the same as ours.

CLICK FOR KEYS

Sunday, September 11, 2011

Oracle/PLSQL: Ascii Function

The ascii function returns the NUMBER code of the given character.

Syntax:

           ascii( 'single character');


For example:

     ascii('R') is 82
     ascii('t') is 116


for more on ASCII values click here

Oracle/PLSQL : Decode Function

In Oracle/PLSQL, the decode has the functionality of an IF-THEN-ELSE statement.


Syntax :
 
       decode( expression , search , result [, search , result]... [, default] )

expression is the value to compare.

search is the value that is compared against expression.

result is the value returned, if expression is equal to search.

default is optional. If no matches are found, the decode will return default. If default is omitted, then the decode statement will return null (if no matches are found).

Applies To:
              Oracle 9i, Oracle 10g, Oracle 11g

For example:

You could use the decode function in an SQL statement as follows:  

SELECT supplier_name, decode(supplier_id, 10000, 'IBM',
                                                          10001, 'Microsoft',
                                                          10002, 'Hewlett Packard',
                                                           'Gateway') result FROM suppliers;

The above decode statement is equivalent to the following IF-THEN-ELSE statement:

IF supplier_id = 10000 THEN result := 'IBM';
ELSIF supplier_id = 10001 THEN result := 'Microsoft';
ELSIF supplier_id = 10002 THEN result := 'Hewlett Packard';
ELSE result := 'Gateway';
END IF;

The decode function will compare each supplier_id value, one by one.

For more on DECODE click here

Wednesday, September 7, 2011

Advertise to over 10 million customers around the world

Promote to over 10 million customers

Promote to over 10 million individuals around the globe.

We promote your company in global network of partners webpages, each with own targeted points of interests.
Our company gives you innovative promotion methods that helps your company profitable online.
We will provide you with real and visible results and take your web-site to the next level.
Advertise to Over 10 Million customers Now...

Increase search engine rank

Increase your website search engine rank

Showing up on search engines is one of the most important strategy to increase website traffic and expose your content or service to customers who might be looking for your product.
All major search engines utilize an algorithm to calculate your website ranks.
They know the number of web-sites are linking to your web-site; more links and visitors better rank for your website.
Get Better Rank...

Millions of Visitors

Millions of Customers

Reach millions of shoppers looking for products and services.
Our audience is constantly growing and now it's over 25 million new customers each month. We only work with trusted American and global promotion webpages, which bring potential visitors from North America, Western Europe and upcoming markets.
Get More Traffic, Get More Visitors...

about rampradeep pakalapati

hi guyz this is rampradeep

click here

Friday, September 2, 2011

Training & Internship Opportunities for PHP Developers, Web Designers, SEO

zMorgon is an IT firm providing solutions & services in web, software and robotics industry. Currently zMorgon IT Solutions carries out its operation from India, Qatar and United States of America. And the company is on the process of expanding throughout Middle East and also creating alliances with global organizations worldwide.



We are seeking eligible candidates for training & internship opportunities with us for PHP Developers, Web Designers, SEO positions right now.



Upload your resume here http://www.zmorgon.com/jobs.php or send an email to (Send CV using the apply link)



Agency/Employer: zMorgon IT Solutions Pvt Ltd

Town or City: Trivandrum (Trivandrum)

Sector: Internet,IT

Related Job Titles: Formación,Training,Engineer in Training,Internship

Permanent/Contract: Contract, Part time

Experience: 0 years

TURBO_C_v4.5 FOR WINDOWS

Turbo c++ is an important and a very useful software to learn C & C++.





TO DOWNLOAD CLICK HERE

Monday, August 29, 2011

ADD A FILE TO REGISTRY

ADDING A FILE TO REGISTRY IS SO SIMPLE AND IMPORTANT





Let us do it with an example "TAKE OWNERSHIP"



download TakeOwnership file here ****DOWNLOAD ******add it to your registry





PRESS (WINDOWS+R)



TYPE regedit AND press OK



FILE > IMPORT > SELECT FILE



Thats it.....you are done..

MAKE WINDOWS 7 GENUINE

It is very easy if you follow these steps as if they are said......



Don't miss any of them and download all necessary software as and when said im providing all that is necessary....



######################################################################################################



STEP1: START > Control Panel > Programs > Programs and Features > View installed updates



Under MICROSOFT WINDOWS > uninstall Update for Microsoft Windows(KB971033).





RESTART



STEP2: First we need to Uninstall Windows Activation Technologies (WAT KB971033) it has to be removed before we proceed.



OR

Do this Manually

Go to "*\system32" folder and delete the folder 'Wat'.



(download TakeOwnership file here ****TAKEOWNERSHIP ******add it to your registry).





ADDING A FILE TO REGISTRY





PRESS(WINDOWS+R)........TYPE regedit........FILE > IMPORT > SELECT FILE





STEP3: Run RemoveWat 2.2.6 [Run as Administrator]Click "RemoveWat" button, then restart.Download link posted below.



******REMOVE WAT*********





STEP4: After you reboot repeat step 1 to check whether the (KB971033) patch is properly removed.

If patch appeared on the list proceed to uninstall and after you “Uninstall” Patch (KB971033) on the second time

open “Task Manager” Click on the “Processes” Tab, find “dllhost.exe” then End this Process.







[this is optional if you still have trial apearring on system properties or the not genuine message]



Go to System32& Right Click the file "systemcpl.dll" Select "Take Ownership"

Right click systemcpl.dll file select Properties.Click "security" tab,click "Edit" button.

And on every User names or Group below tick "Full Control" apply and delete the file.



DOWNLOAD systemcpl.dll from the link***********systemcpl.dll*********

Paste the file downloaded on *\windows\system32 folder,













***************************************************ITS OVER****************************************************************





BUT STILL THE WATER MARK EXISTS....SAYING windows not genuine











Just follow the procedure below to remove watermark from Windows 7.

Testing,evaluation copy,this copy not genuine,all watermarks.



You need to install first: Dot Net Framework 4.0 Download it (http://adf.ly/1WGyE)



1. Download my tool ******* AUXIUS *****

Save and extract it on your C drive.



Not right: C:\AuxiuS\AuxiuS\Content

Right = C:\AuxiuS\Content

Inside C:\ drive







2. Download Take ownership.reg here ***** TAKEOWNERSHIP ********and add it on the registry.

Go to System32>en-US>Right Click the file "user32.dll.mui" Select "Take Ownership"

Go to SysWOW64>en-US>Right Click the file "user32.dll.mui" Select "Take Ownership"





3. Disable: User Account Control (UAC)



Go to Start Menu -> Control Panel -> System and Security -> Action Center.

Click "Change User Account Control"







Move the Slider to down with the description “Never Notify”





Press OK then Restart.







4. Go to C:\AuxiuS folder, Run program as admin.





Run RemoveWMx64 if running 64bit OS

Or RemoveWMx86 for 32bit OS





Click “Remove WT” to start

A msgbox will appear after process. Click OK



5. Go to start menu and type "cmd",

right click CMD select "Run as Administrator" on

CMD type the following " mcbuilder.exe" hit enter

and wait a few seconds,

then restart you computer.