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
~18.8K People Reached
Favorite Tags

48 Posted Topics

Member Avatar for rje7

Hi, i have two tables both one is partitioned and another is having a 3GB of data. I've added a composite index on both the tables based on the where clause, in the order it appears. The output of explain plan after gather stats shows that the sql is accessing …

Member Avatar for pclfw
0
171
Member Avatar for DM Galaxy

It is a part of the Visual Studio. Its called deployment project. Some thing like in this link [http://msdn.microsoft.com/en-us/library/ms235317(v=vs.90).aspx](http://msdn.microsoft.com/en-us/library/ms235317(v=vs.90).aspx)

Member Avatar for Uchiha Itachi
-1
324
Member Avatar for rje7

Here i am trying to load data from TABLE1 to TABLE2. The requirement is to consider those records in the TABLE1"where TABLE1.COL1=TABLE1.COL1 (OR) TABLE1.COL2=TABLE1.COL2" As a single group and insert into TABLE2 with COL3 with a unique value for each group thus identified. TABLE1 ~~~~~~ COL1 | COL2 1 | …

Member Avatar for pritaeas
0
192
Member Avatar for rje7

How to find the difference of two files and get a 3rd file with the newer information alone. for example: There are two files file1 and file2 **file1** apple mango pear **file2** apple mango pear cat and dog I need a file with **fileout** cat and dog how to achieve …

Member Avatar for rje7
0
159
Member Avatar for rje7

I'm trying to expand on the Tab Swipe Application template. I've created a class, say x, which extends AsyncTask which reads from network and update ListView. x.execute(param1) is invoked from the static class DummyFragment. The problem is i'm confused as to how to pass the context to the following code. …

Member Avatar for rje7
0
3K
Member Avatar for slfisher
Member Avatar for rje7

how can i alter the INITIAL and NEXT value of a table. I tried something and ended up with the following code. [code]ALTER TABLE TABLENAME ADD ( PRIMARY KEY (ORDER_ID) USING INDEX TABLESPACE TALLYDATA PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE ( INITIAL 64K NEXT 64K MINEXTENTS 1 MAXEXTENTS UNLIMITED …

Member Avatar for debasisdas
0
145
Member Avatar for rje7

[code]{ sqlplus -S ${DB_LOGIN} << eosql set echo off; set feedback off; set heading off; WHENEVER SQLERROR EXIT FAILURE; ${1} }[/code] can i pass the qurey as a prameter to this function? will that query get executed if the query is echoed as ${1}?

0
68
Member Avatar for soomro_moon

could you explain why through serverside scripting like php? i hope you are aware of changing the textbox properties using a client side script like javascript.

Member Avatar for soomro_moon
0
124
Member Avatar for anirban1087

oracle supports hierarchical database by using types. those type of data can be handled using the queries like in the following page. [url]http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/queries003.htm[/url]

Member Avatar for anirban1087
0
107
Member Avatar for bbinais

You have to add the table table tr td within the script that is printing the results from the database. <?php for loop for each row{ ?> <a href="url"><td><?php echo "print something here" ?> </td></a> <?php } ?> of course you should add the missing <table> and <tr> tags.

Member Avatar for Shanti C
0
93
Member Avatar for nyler01

may be ajax and php should be used to retrive the data from the database and update the pages in periodic intervals of time.

Member Avatar for rje7
0
119
Member Avatar for daviddoria

[code=php] <?php$xml = simplexml_load_file("test.xml"); echo $xml->getName() . "<br />"; foreach($xml->children() as $child) { foreach($child->children() as $subchild) { echo "<a href=bookdetails.php?".$child->getName().">".$child->getName()"</a>"; } } ?> [/code] in the bookdetails.php use $_GET to retrive the parameter value. then use this value to fetch the matching data from the XML file.

Member Avatar for P0lT10n
0
1K
Member Avatar for veledrom

[QUOTE=veledrom;1420642]Hi, Like everyone, I access my apache server by typing [url]http://localhost[/url] or [url]http://127.0.0.1[/url] but what I want is that I want to access it from outside by typing a domain name like [url]http://my.domain.com[/url] I've added my current IP information for you. This is what I need. I'll be much appreciated …

Member Avatar for veledrom
0
368
Member Avatar for rje7
Member Avatar for johnkeartson

I have installed it in the Windows 7. VM for Java too installed without an error. I then tried to compile and run a couple of sample projects of MFC appwiz, VB and Win32 App and it worked good. But then i had this problem. When i try to create …

Member Avatar for addym55
-6
2K
Member Avatar for iammirko

check out roundcube, squirrelmail. these are open source web based email clients. you may install them in your domain itself. a good alternative to write your own code.

Member Avatar for iammirko
0
188
Member Avatar for rje7

[code] public class Animal { public void eat() { System.out.println("I eat like a generic Animal."); } public static void main(String[] args) { } } class Fish extends Animal { @Override public void eat() { System.out.println("I eat like a fish!"); } } class Goldfish extends Fish { @Override public void eat() …

Member Avatar for javaAddict
0
169
Member Avatar for rje7

[code=c] printf("\nn = %*d", 5, 4); [/code] and the output is: [code]n = 4[/code] (yea! there are spaces between = and 4) if i am providing only one argument 5 instead of 5 and 4 i get an error stating too few arguments. What in the world is the "*" …

Member Avatar for rje7
0
239
Member Avatar for tennis

some minor changes and its working now. #include<iostream> #include<string.h> using namespace std; void reverse (char * source) { int i=0, j=strlen(source)-1; while (i<j) {char temp=source[j]; source[j]=source[i]; source[i]=temp; i++; j--; } cout<<source<<endl; } int main() { char c[]= "university"; reverse(c); } joe@localhost:~/Desktop$ g++ cc.cc cc.cc: In function ‘void reverse(char*)’: cc.cc:6: error: …

Member Avatar for rje7
0
135
Member Avatar for rje7

How do i perform search from php within the search result that was just returned? In oder to perform a search on the result set again i need to have the result set stored some where. either in session/cookie or temporary table in the mysql server. i tried the mysql …

Member Avatar for rje7
0
125
Member Avatar for flamer_x86

Depends on what server side scripting you are going to use. So heres a list of languages and their corresponding web server software. PHP->Apache JSP/Servlets/struts->Tomcat or GlassFish ASP.NET->IIS While PHP can also be configured to run on IIS also.

Member Avatar for flamer_x86
0
63
Member Avatar for rje7

The basic difference would be interface cannot have any method definition or variables declared while an abstract method can have them. Now what is the difference between an abstract class and an interface when they contain only the method signatures in them. In what situations will you use either of …

Member Avatar for masijade
0
125
Member Avatar for rje7

I am trying to split up the registration form into two php pages. Is it possible for the second page to submit its form along with the $_post which contains the information from the first page? well the question should be.. is there a function in php which will bind …

Member Avatar for rje7
0
127
Member Avatar for rje7

|__www/ | |__application/ | |__includes.php | |__public/ |__index.php the line in the index.php says require_once ('application/includes.php'); and that includes.php file will have similar require_once which has reference to files under the subfolders of application. i'm using ubuntu lamp stack. i got this open source project which was first developed in …

Member Avatar for rje7
0
121
Member Avatar for rje7

I want to arrange the number 1 - 12 like shown below. like the numbers on the clock. [code] 12 11 1 10 2 9 3 8 4 7 5 6 [/code] arrived with the following code: [code=c] #include<stdio.h> int main(){ int e = 11; int count = 10; int …

Member Avatar for Adak
0
104
Member Avatar for rje7

I am trying to change the look of the jsp/servlet pages dynamically based on the device from which the request comes. i have done the part of how to identify the devices from which the request arises. but stuck at the part where i should change the css sheet. is …

Member Avatar for jwenting
0
71
Member Avatar for rje7

I am trying to implement object inheritance with oracle 10g express. What i have done so far is created some types and subtypes. And some tables based on those types and sub types. So far i have understood that the subtypes inherit the attributes and methods from its super types. …

0
78
Member Avatar for manjunath_praj

[QUOTE=manjunath_praj;1102372]How can I add something at page level without inserting into the database. Thanks Manju[/QUOTE] [code] DataTable dt,bt; DataSet dset = new DataSet(); dt = dset.Tables.Add("shop"); bt = new DataTable(); dt.Columns.Add("Name", typeof(String)); dt.Columns.Add("Price", typeof(float)); dt.Columns.Add("Quantity", typeof(int)); dt.Columns.Add("Amount", typeof(double)); bt.Columns.Add("Company",typeof(String)); bt.Columns.Add("Model", typeof(String)); bt.Columns.Add("Insurance Amount", typeof(float)); [/code] this is a code snipped …

Member Avatar for rje7
0
114
Member Avatar for rje7

Are there different SQL extensions? What are the extensions for Data Mining and Warehousing?

Member Avatar for rje7
0
84
Member Avatar for rje7

Why does the thread 3 execute before thread 2 though iam invoking it before thread 3? if i am right.. after invoking thread 1 the printmsg1 enters into the synchronized state. thread 2 is put in the stack then thread 3 is put in the stack. so after the thread …

Member Avatar for JamesCherrill
0
1K
Member Avatar for jonathan123

in the page load event we should read the query string to retrieve the courseid like [code]int CourseID = Convert.ToInt32(Request.QueryString["sid"].ToString()); [/code] I'am assuming that the course id in the database is of integer data type. pass this CourseID as a parameter to the course name select query.

Member Avatar for jonathan123
0
224
Member Avatar for bharatshivram

[code=c#] protected void fv1_PageIndexChanging(object sender, FormViewPageEventArgs e) { Label mirrorLable = (Label)fv1.Row.FindControl("UrlLabel"); } [/code] UrlLabel is the server control which is contained in the formview control. this is from the aspx file [code=asp.net] <div> <asp:FormView ID = "fv1" runat="server" AllowPaging="True" CellPadding="4" DataSourceID="SiteMapDataSource1" ForeColor="#333333" OnPageIndexChanging="fv1_PageIndexChanging"> <ItemTemplate> Description: <asp:Label ID="DescriptionLabel" runat="server" Text='<%# …

Member Avatar for bharatshivram
0
109
Member Avatar for misselegant

> Hi guys, > > I coding a page to save the first name in the database, iam having a problem and I want you to help me please.. > > aspx page code <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CompanyInfo.aspx.cs" Inherits="CompanyInfo" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html …

Member Avatar for misselegant
0
96
Member Avatar for rje7

hi everyone, I'm developing a Online Music Shop. I think i have completed the basic modules which are necessary in a online music shop. modules include buying prepaid credits, searching for a music file in titles, artist and album, preview the music file, shopping cart, buying the file deducting from …

Member Avatar for rje7
0
139
Member Avatar for rje7

i tried to add a database file to an exsiting Website project. i get this error. "connection to SQL Server files (*.mdf) require SQL server express 2005 to function properly." installed products are visual studio 2008 sp1 sql server 2008 however creating a data connection to a database attached with …

Member Avatar for acadalzo
0
165
Member Avatar for majestic0110

[QUOTE=ManicCW;540279]You can create virtual directory with application in your IIS.[/QUOTE] That ain't working either. I'm getting the "A name was started with an invalid character. Error processing resource 'http://localhost/OneLove/Login.aspx'. Line 1, Pos..." i'm trying to deploy the Website in a iis 5.1

Member Avatar for rje7
0
969
Member Avatar for rje7

[ATTACH]6894[/ATTACH] port number at the asp.net developer server and port at which the WebDeveloper tries to run the Website do no match. which gives me a page not found error. each time i have noticed that the port numbers differ by a count of 2/3. i tried using manual port …

0
70
Member Avatar for rje7

[code] #include<iostream> using namespace std; class welcome{ public: welcome(){ cout<<"Constructor"; } }; int main(){ welcome c; return 0; } [/code] for the above code i get the following errors wen i try to compile using GCC in PCLinux minime version. cannot figure out if there is an error in my …

Member Avatar for rje7
0
122
Member Avatar for mofoparrot

[QUOTE=mofoparrot;596911]When I try to debug it, it points to this line but I don't know what's wrong w/ it... [code=cplusplus] for (i = 1; i<= NUMARCS+1; i++) { if (point[tail[i]] == 0) { point[tail[i]] = i; } } [/code][/QUOTE] try this [code=c++]for (i = 0; i< NUMARCS+1; i++) [/code]

Member Avatar for mofoparrot
0
155
Member Avatar for complexcodes

iterate through the list until the end of the list. declare a variable called SUM then add the numbers from each node during the iteration to the variable sum.

Member Avatar for Laiq Ahmed
0
3K
Member Avatar for rje7

is this a good example to demonstrate the different types of inheritance? kindly give feed back and suggestions.. ps:using the g++ compiler [code=c++] #include<iostream> using namespace std; class life{ public: virtual void eats()=0; protected: char* predator; char* prey; }; class producers : public life{ virtual void eats()=0; }; class animal …

Member Avatar for rje7
0
198
Member Avatar for JoBe

[QUOTE=Ancient Dragon;217255]depends on the operating system. There are libraries that are pretty much portable between *nix, MS-Windows, and (I think) MAC, for example [URL="http://doc.trolltech.com/3.3/"]QT[/URL].[/QUOTE] are the programs created using the windows port ofQT portable?

Member Avatar for Ancient Dragon
0
347
Member Avatar for rje7

in turbo C++ there is a function called delay(); and in microsoft compiler i guess it is sleep or msleep. what could be the possible equivalent function which can be used when compiling in GCC. using the looping technique will give different time difference in different machines. is it true? …

Member Avatar for rje7
0
349
Member Avatar for rje7

im building a telephone directory. and the code is given below. i am using file system to store the record which i get from the user. and then i should be able to do searching, deleting, sorting and other default telephone dir functions. so far i have been able to …

Member Avatar for Salem
0
87
Member Avatar for rje7

Loader error (0000): unrecognized error i get this error message when ever i start the Turbo C++ 4.0j IDE. What could be the problem? i tried reinstalling the software but in vain. it was working fine though before.

Member Avatar for rje7
0
52
Member Avatar for bhoot_jb

easiest way.. [url]http://nchc.dl.sourceforge.net/sourceforge/mingw/MinGW-5.1.3.exe[/url] mingw is windows port of the gcc. Cygwin too is, but will come loaded with load of other softwares(which of course can be custom installed. but why the pain). this setup will require internet connection through out the installation process.

Member Avatar for bhoot_jb
0
123
Member Avatar for rje7

dear all, wat should i do to clear the input buffer stream? and also make me clear regarding flush and fflush. both do the same functions?

Member Avatar for rje7
0
111

The End.