Skip to main content

Posts

How to handle disk space issue on C drive

Mostly we face space issue in C drive . How to handle disk space issue on C drive? Following are the steps you can use to free some space in c drive. 1. Go to event viewer and clean all logs. 2. Use disk cleanup properties on c drive to clean unwanted logs. 3. Clean CBS log file at C:\Windows\Logs\CBS folder. 4. Go to %userprofile%\desktop folder and transfer all files to other drives. 5. Set virtual memory to other drive instead of more on c drive. 6. Uninstall unwanted program from control panel ->Program and features. 7. Clean temporary folder from internet explorer. 8. You can use ccleaner software to clean logs. 9. Empty Recycle bin folder. 10. Find duplicate files and delete it.

What is difference between btree indexes and bitmap indexes?

1)Btree index:when ever we are requesting data using btree indexes columns using where clause then oracle server searching for indexes in database,if btree indexes columns are available in database then oracle server automatically creates btree structure,through btree structure only oracle server retrieve data very fast from data base . 2)Bitmap index:when ever we are using bitmap index then oracle server automatically creates bitmap table,it is mostly used in data-ware house applications.bitmap index is high performance compare to btree index because bitmap index internally creates bitmap table. 3)By default indexes are btree indexes. When ever we are creating the primary key ,unique key constraints automatically btree indexes are created. If you want to create bitmap index then explicitly you have to mention the bitmap keyword at the time of creation of index. Bitmap index mostly created on lo cardinality columns.the table having wide range values.

What is an Embedded system?

An Embedded system is any computer system hidden inside a product other than a computer.  You will encounter a number of difficulties when you writer embedded-system software in addition to those you encounter when you write applications. Throughput — Your system may need to handle a lot of data in a short period of time. Response — Your system may to react to events quickly. Testability — Setting up equipment to teat embedded software can be difficult. Debug ability — Without a screen or a keyboard, finding out what the software is doing wrong is a trouble some problem. Reliability —Embedded systems must be able to handle any situation without human intervention. Memory Space —Memory is limited on embedded systems, and you must make the software and the data fit into whatever memory exists. Program installation —You will need special tools to get your software into embedded systems. Power Consumption —Portable systems must run on battery power, and the software in these sys

Platform Independence of .NET Platform,Advantage,Disadvantages

Platform Independence of .NET Platform Its lang independent as long as that language's compiler targets the managed environment.. i.e, code written in C#.net or VB.Net or any other .Net compliant language will result in the same IL. certainly .net doesn't compile in UNIX. No compilers til date i suppose.. Heard that something similar exists to compile .net in Linux tho'.. Platform Independent does not mean O S independence in .NET terms. It means you can build a managed code and be assured it works on 32 - bit m/c, 64 bit m/c etc. Of course, at present it only supports Windows as O S, but Microsoft has left open the UNIX ( or any other O S for that matter) implementation of .NET run time. Lot of open source projects are going on in this regard. Advantages of asp with c sharp over asp with vb.net ultimately both copies in to MSIL, it depends on what application designing and what is the background of the developers who work for. C# more structured and fully OOP e

Bulkcollect and any restrictions in Bulkcollect In SQL

Question: What is bulk-collect and any restrictions in bulk-collect ? what is the use of limit clause in bulk-collect ? Answer: With bulk collect we can move all the resultant set in bulk to b processed in PL/SQL engine which kindles high efficiency but at the cost of memory ,thus the resultant set is moved in batches by giving how many records to be moved in one batch by specifying it in limit clause. Actually bulk collect performance is very high,because when ever resource table having large amount of data to fetch data using cursors that is degrade performance of the application,to improve performance of the application then we are using bulk collect,limit is an optional clause using in cursor fetch statement with bulk collect clause. Bulk collect reduces the context switching between the SQL and PL/SQL engines .. thereby increasing performance.. we can reduce the context switch to one but in case of very large data set. it's must that you use limit clause to manage t