Posts

Showing posts from 2009

Enable sharing option for folders in windows XP for users

Image
If suppose any local or domain user is not finding the option if sharing and security, follow the following steps. 1)Double Click My computer 2)Click Tools--Folder Options--Click Views---click the last option "Use simple file sharing (Recommended). 3)If its already clicked then uncheck and check it once and restart.

Double click a folder open search box

When i am double click or single click my folder the search box opens :- There are 2 methods to solve this issue 1)Simple helps most of the time start-run-cmd Type regsvr32 /i shell32.dll 2)Solution 2 1. Start Registry Editor (Regedt32.exe). 2. Locate and then click the Default value under the following keys in the registry if this problem occurs with folders: HKEY_CLASSES_ROOT\Directory\shell If this problem occurs with drives: HKEY_CLASSES_ROOT\Drive\shell 3. Click Modify on the Edit menu. 4. Type none in the Value data box, and then click OK. 5. Quit Registry Editor.

ORA-27154: post/wait create failed. ORA-27300: OS system dependent operation:semget failed with status: 28 ...

set semsys:seminfo_semmsl = 2048 * to match number of Oracle processes The value above must be greater than the sum of all initSID.ora processes values for all instances on the system Please restart the system as kernel parameter need init to be restart so restarting init means restarting system to better reboot

when a nis user in solaris is not able to connect to database use all this commands

export ORACLE_HOME=/oracle/ora10/oracle10 export ORACLE_SID=tcmd1 export TWO_TASK=tcmd1 export TNS_ADMIN=/oracle/ora10/oracle10/network/admin export ORACLE_BASE=/oracle export PATH=$ORACLE_HOME/bin:$PATH

Can't change password for a user in solaris getting error permission denied

This error occurs when NIS LDAP or Shadow file is not sync properly Login as Root #passwd -r files username New Passwd Enjoy Cheers

Oracle Database console not able to start and giving error oracle 11 not running

WHat is the output of the following command? emctl status dbconsole. If not running emctl start dbconsole If still you are getting error If you want you can try also drop and recreate the repository again To drop $> emca -deconfig dbcontrol db -repos drop It will ask for Database name = Listerner port = 1521 or what ever you have specified To Recreate emca -config dbcontrol db -repos recreate This should solve your problem.

ORA 01172 recovery of thread 1 stuck at block 27269 of file 3 ORA-01151: use media recovery to recover block, restore backup if needed

Error: ORA 01172 recovery of thread 1 stuck at block 27269 of file 3 ORA-01151: use media recovery to recover block, restore backup if needed Cause: Crash recovery or instance recovery could not apply a change to a block because it was not the next change. This can happen if the block was corrupted and then repaired during recovery. Action: Perform a RECOVER datafile for the file containing the block. If this does not resolve the problem, then restore the file from a backup and recover it again. Are you archivelog or noarchivelog mode? Try this first 1. SHUTDOWN IMMEDIATE; 2. STARTUP MOUNT; 3. RECOVER DATABASE; 4. ALTER DATABASE OPEN; If this does not work then you will probably have to do media recovery. The type of recovery depends on type of archive mode you are running. Look at alert log for additional info such as file needing media recovery. The type of file needing recovery also determines type of recovery.

Remote Desktop Connection has Expired (Pre-Release Version) Download from Windows Updates

First of all check the your XP version If it is XP SP3 v,3256 or some other version for SP3 then 1 step - Copy mstsc.exe and mstscax.dll from C:\WINDOWS\system32 and mstsc.exe.mui, mstscax.dll.mui from C:\WINDOWS\system32\en-us from some other machine where mstsc is working. 2 step - in the current machine go to cmd c:\sfc /purgecache - to remove the temp entries. Copy mstsc.exe and mstscax.dll To C:\WINDOWS\system32 mstsc.exe.mui, mstscax.dll.mui from C:\WINDOWS\system32\en-us 3.Logoff and Login and try now.Remember this activity has to be done from Administrator account only. 4.If in Any case you still are getting the error that means File Protection is enabled in your system 5.To Disable File protection of the system go to start--cmd--regedit HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows NT\ CurrentVersion\ Winlogon. By default, SFCDisable is set to 0 make it 1 or 2.The Follow Steps 2,3,4, and log off and login with admin and start - run - mstsc Cheers Enj...

how to check Sga_max_size

sql>show parameter Sga_max_size; To check all the parameters sql>select * from v$parameter; Thanks Naveen

how to check Optimizer_index_cost_adj

sql>show parameter Optimizer_index_cost_adj Thanks Naveen

How to check Optimizer_index_caching from sql prompt

simple answer is sql>show parameter Optimizer_index_caching; Done Enjoy Naveen

How to run multiple Queries or command in Sql Oracle

First create a note pad file and type all the commands in the notepad please rememeber to seperate the command with (;) eg:- select * from global_name; select * from v$parameter; save the file as sql extension like demo.sql and paste in the your c:\ enter to sql prompt sql>@c:\demo.sql now all the commnads will run one by one. Thanks Naveen

Getting error c:\windows\system\config

Boot the system with Xp CD when recovr come press 1 and enter Enter the following 3 commands Bootcfg modifies the Boot.ini file for boot configuration and recovery. Chkdsk The /p switch runs Chkdsk even if the drive is not flagged as dirty. The /r switch locates bad sectors and recovers readable information. This switch implies /p. Chkdsk requires Autochk. Chkdsk automatically looks for Autochk.exe in the startup folder. If Chkdsk cannot find the file in the startup folder, it looks for the Windows 2000 Setup CD-ROM. If Chkdsk cannot find the installation CD-ROM, Chkdsk prompts the user for the location of Autochk.exe Fixboot writes a new startup sector on the system partition. Fixmbr repairs the startup partition's master boot code. The variable device is an

FTP is able to login with root but not with NIS users in HP

FTP is able to login with root but not with NIS users in HP create a shells file in /etc/ directory if already shells is there in /etc/directory just edit it vi /etc/shells /bin/sh /bin/csh /bin/tcsh /sbin/sh wq! Now try FTP :-) cheers