Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~2K People Reached
Favorite Tags
Member Avatar for pointers

Hi, Can we get a SQL query, to display all the dates between two given dates eg. if date1=21-mar-2007 and date2=25-mar-2007 then the query should display all the dates between those two given dates i.e 22-mar-2007, 22-mar-2007, 23-mar-2007and 24-mar-2007. Query should not contain any plsql coding. Regards.

Member Avatar for D Silent KilLeR
0
126
Member Avatar for pointers

Hi, I have a question pls clarify it. If a table is created and grant, index, triggers, synonyms etc are defined on the table. what happens to grant, index, triggers, synonyms etc if the table is dropped. What is the data dictionary needs to be checked to validate all these …

Member Avatar for debasisdas
0
87
Member Avatar for pointers

Hi, I have a question. Please help me out. What is the default "display date format" and default internal "accepting date format"? How to change the default display and accepting format. In my system, the default display date format in sql * plus is dd-mon-yy, where as in toad it …

Member Avatar for debasisdas
0
76
Member Avatar for blacklocist

Hi All, I have a question and can't seem to find a answer anywhere. A normal function can void or return a object. [CODE] public void CoolFunction() { [INDENT]//Some Code[/INDENT] }[/CODE] I know you can do this. [CODE] public int ReturnOneObject() { [INDENT]return intNumber[/INDENT] }[/CODE] What I can't find or …

Member Avatar for ChaseVoid
0
373
Member Avatar for pointers

Hi, Could you pls explain me the confusing, diffterece between the views "USER_ " , "ALL_" and "DBA_". On which table query should be executed to get all the list of views like user_constraints, user_sons_constraints, user_source,user_sequences etc. Regards Pointers.

Member Avatar for pointers
0
90
Member Avatar for pointers

Hi, My project is related to Hand Held device. We are using emulator. The total code is written in C#. There is some data of 83,000 records, I have to upload the data into the emulator. After uploading some 50,000 records it is showing some error like "Storage memory is …

Member Avatar for pointers
0
74
Member Avatar for pointers

[COLOR=green][COLOR=green]Hi,[/COLOR][/COLOR] [COLOR=green][COLOR=green]I am trying the followinfg code could plese help me. I tried in google but dint get....[/COLOR][/COLOR] [COLOR=green][COLOR=green] I need a JavaScript code For checkbox.[/COLOR][/COLOR] [COLOR=green][COLOR=green]If one clicks on the checkbox on click it should open some other page.[/COLOR][/COLOR] [COLOR=green][COLOR=green]Location of the page which contains the checkbox and the …

Member Avatar for hollystyles
0
53
Member Avatar for pointers

[COLOR=green]Hi,[/COLOR] [COLOR=green]I am new to C#. I have compiled and executed the following program in Microsofr Visual Studio .NET 2003 .[/COLOR] [COLOR=green][COLOR=green][COLOR=green]using[/COLOR][COLOR=green] System;[/COLOR] [COLOR=green]public[/COLOR][COLOR=green]class[/COLOR][COLOR=green] Enumdemo[/COLOR] { [COLOR=green]enum[/COLOR] Color{ red, blue, black, green } [COLOR=green]public[/COLOR] [COLOR=green]static[/COLOR] [COLOR=green]void[/COLOR] Main([COLOR=green]string[/COLOR][] args) { Color Mycolor; System.Console.Write("Enter the values: 0 for red 1 for blue …

Member Avatar for ChaseVoid
0
135
Member Avatar for pointers

Hi all, I am new to C#(programming). Could you tell me a good link for C#. Could you please tell me the use of STATIC keyword use in C#. why static is used in the following line what are the advantages..? public static class myclass{ ..................... } Thanks and regards

Member Avatar for pointers
0
99
Member Avatar for pointers

Hi, Pls tell me the output for the following code............ public class Test { public static void main(String args[]){ int i=0; for(int j=0;j<=10;j++) { i=i++; } System.out.println("value of i\t"+i); }

Member Avatar for jwenting
0
90
Member Avatar for pointers

Hi, I am very new to java.....i know only c programming language.....even dont know c++ now i am getting training in java , i am confusing with oops concepts like polymorphism,inheritence etc. and java syntaxes all can u pls post a good link thst gives good command over oops , …

Member Avatar for indianscorpion2
0
80
Member Avatar for pointers

Hi, I am a basic learner in C language.Could u please provide me a good link or tutorial or explanation regarding "order of precedence". I have the table of "order of precedence"........but needed some examples. I am always confusing with them. like, *ptr++=something; *++ptr=something i=i++................etc. Thanks & Regards.

Member Avatar for WaltP
0
195
Member Avatar for pointers

Hi, I hav defined an array of n elements.Each element represents a structure. Like, [code=c] typedef struct { int dd; int mm; int yyyy; }srik; srik a[n]; [/code] Then how to assign a date (eg:02/07/1984) as a string("02071984") to the first array element(means the first structure) in the array. I …

Member Avatar for Ancient Dragon
0
102
Member Avatar for pointers

Hi, I am going to write an exam I found a model question. could u pls solve this question. An array named 'DATE_ARRAY' with n elements present in the memory. Each element in the array is a structure representing the 'Date' information and its type defination is shown below. Type …

Member Avatar for Bench
0
105
Member Avatar for pointers

Hi, I am a basic learner in c and datastrustures..... I want to know the conepts of trees, graphs... could u provide me a proper tutorial or a good link which discusses trees and graphs concepts in c language....... Thanks & Regards.

Member Avatar for iamthwee
0
117
Member Avatar for pointers

Hi i hav a doubt could u pls explain me.............. wt s da sizeof(int*) , sizeof(int**),sizeof(int) in the following code [code=c] int **p; int *q; p=(int *)malloc(sizeof(int *)) *p=(int *)malloc(sizeof(int)) **p=12; q=*p; [/code] Thanks and regards.

Member Avatar for Salem
0
94
Member Avatar for pointers

I hav one doubt regarding post decriment,the code in c is as follows............. void main() { clrscr(); while(i--!=6) i=i+2; printf("%d\n",i); getch(); } I know the output is 5, but i read in a book dat the post incriment or decrement operators are evaluated after reaching semicolon(;).....but in while condition,the ondition …

Member Avatar for jim mcnamara
0
166
Member Avatar for pointers

Hi, I am a basic learner, could u pls provide me the c code for the pascal triangle....... Thanks & Regads

Member Avatar for WolfPack
0
83
Member Avatar for pointers

Hi i hav executed the following c code..the inner printfs executes first and prints some garbage value...why dont the outer printf prints anything... i got only one garbage value y dont two garbage values....wt s the order of precedence in printf function and in nested printfs.... the c code is …

Member Avatar for ~s.o.s~
0
100
Member Avatar for pointers

could u tell me the use of static storage class before a function...like static add(); could u tell me a good link to get collection of programes in c language.... Thnaku and Regards.

Member Avatar for ~s.o.s~
0
85