How many ways we can fill a dataset in .Net
whats the use of following Good Coding Practices?
ok how would i do the following extract from a file i have ssns = 267907230 which are in column 7 into a separate data set then create a 2nd job step to extract from the data set created the following "fund code" which is in column 31 and is 113 into yet another data set
Any real time example of O2C process from taking order till creating invoice.
What are two of your strengths that you will bring to our QA/testing team?
Which tag is used to create table row
what is the exact full form of OOPS,O -> object O -> oriented P -> programing S-> ? ....
I m new to the dbms. Recently i came across words clustered indexes & nonclustered indexes but i dont know what is this all about & whats the difference between them.. So please help me!!!!!!!!
what is log files in qtp what is use
Write a function which accepts a sentence as input parameter.Each word in that sentence is to be reversed. Space should be there between each words.Return the sentence with reversed words to main function and produce the required output. for eg:- i/p: jack jill jung kill o/p: kcaj llij gnuj llik
Please anyone tell me coding to print prime numbers from 1 to 5000 in c#....
what is throws keyword
SAS question: I have 50 fils a1,a2,...,a50. the primary key is upc. then if i want to merge all 50 files, the code is as follows, data test; merge a1 ... a50; by upc; run; we know that writing all 50 files name is time consuming, is there any standard format of this code?