Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

how to import .dmp file in oracle database by command prompt

login as dba SYNTAX-- imp userid/password@database_name file='path of dmp file' full=y e.g- imp system/manager@orcl file='c:\dabasefile.dmp' full=y

Drivers in MySQL

Drivers enables the developers to build database applications in their language of choice. Drivers available in Mysql: PHP Driver:The MySQL native driver for PHP is a replacement for the MySQL Client Library for the PHP script language. JDBC Drive

Convert a Video File from One Format to Another Format using FFmpeg command

Hello Readers, If you want a concert a video file from one a define format to other format, you should to use following command: ffmpeg -i INPUTVIDEONAME -c:v libx264 -profile:v baseline -c:a aac -strict experimental -ar 44100 -ac 2 -b:a 128k -

How to get directory list?

To get directory list in PHP we have define a function get_dirlist() in which we are passing a parameter which is the name of the directory. Inside this function we are executing the ls command with the help of exec() function. Using this we will get

Error Handling in Swift 2

SWIFT Swift is a very powerful and simple programming language which is used for creating the iOS applications.Swift is a language which is designed to work with Apple's Cococa and Objective-C. The advantage of this language is that it is one the m

How to swap two variables in one line in C?

How to swap two variables in one line in C? C program to swap two variables in single line #include <stdio.h> void main() { int a = 5; int b = 10; (a ^= b), (b ^= a), (a ^= b); printf("Swapped values of a and b are %d %d",a,

C# : How do I get the directory from a file's full path ?

Many times in application development using C# it is required to get the directory from a file's full path. Let us say we need to find the directory for the following path: string path = @"C:\Directory\File.txt"; If the requirement is to get t

C# : How to create a folder if it does not exist ?

Many times in application development using C# it is required to create a folder if it does not exist. We can use the below method of C# to accomplish the same: System.IO.Directory.CreateDirectory(folderPath); Following is the code for creation of

C# : How to post data to specific URL using C# ?

Many times in application development using C# it is required to to post some data to a specific URL. In this article I will show two options for implementing this : 1) Using WebClient string url = "http://www.url.com/post.aspx"; string params =

Reverse an array without affecting special characters?

Program to Reverse an array without affecting special characters in C++ using namespace std; bool isAlphabet(char x) // Function returns true if an alphabet { return ( (x >= 'A' && x <= 'Z') || (x >= 'a' &&am

1 26 319
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: