A starting page/step to research.
How to pass a list of values or array to SQL Server stored procedure?
Note: Information & code samples from this article are tested on SQL Server 2005 RTM (Yukon) and found to be working. Will update the article in case of any compatibility issues. unfortunately, there is no built-in support for arrays inContinue reading… How to pass a list of values or array to SQL Server stored procedure?
Interviewing Skills for Candidates
Before Be sure to make whatever arrangements are necessary so you can be on time – or early – for your interview. Your punctuality indicates your commitment, dependability, and professionalism. What’s more, you’ll be in a better frame of mindContinue reading… Interviewing Skills for Candidates
When you mix Tollywood with IT Industry ….
A Telugu Movie pundit as a S/W engineer…… 1) Etthi kottanante Google search lo kooda kanapadakunda potav… 2) Orey Java Reddy, Nenu VB chesa, VC chesa, C kuda chesa nee yabba nee Java kuda chesa… Nuvvu.. Software vamsam lo neContinue reading… When you mix Tollywood with IT Industry ….
Java Common Utils: Creating a stored procedure or function in an Oracle Database
A stored procedure or function can be created with no parameters, IN parameters, OUT parameters, or IN/OUT parameters. There can be many parameters per stored procedure or function. An IN parameter is a parameter whose value is passed into aContinue reading… Java Common Utils: Creating a stored procedure or function in an Oracle Database
Java Common Utils: Calling a Stored Procedure in a Database (Oracle)
This example demonstrates how to call stored procedures with IN, OUT, and IN/OUT parameters. CallableStatement cs; try { // Call a procedure with no parameters cs = connection.prepareCall(“{call myproc}”); cs.execute(); // Call a procedure with one IN parameter cs =Continue reading… Java Common Utils: Calling a Stored Procedure in a Database (Oracle)
Java Common Utils: Reading and writing text files
When reading and writing text files : it is almost always a good idea to use buffering (default size is 8K) it is often possible to use references to abstract base classes, instead of references to specific concrete classes thereContinue reading… Java Common Utils: Reading and writing text files
Hiding Javascript Source
When you code an external javascript you identify that it is a javascript using either or both of the language and type parameters on the script tag. The file suffix of .js doesn’t get referenced in determining that the calledContinue reading… Hiding Javascript Source
Recursive execusion of commands in Linux command prompt
When we want to execute any command recursively for a directory, we can use find command for that. find . -name ‘blah*’ -exec rm -rf {} ; But some times, it gives the error as Argument list too long. InContinue reading… Recursive execusion of commands in Linux command prompt
Fast Bit Counting Routines
A common problem asked in job interviews is to count the number of bits that are on in an unsigned integer. Here are seven solutions to this problem. Source code in C is available. Iterated Count int bitcount (unsigned intContinue reading… Fast Bit Counting Routines