Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
20% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~21.3K People Reached
About Me

Software Developer

Favorite Tags
Member Avatar for Arjun_Sarankulu

I have GridView which contain four columns(PAN No. , Member ID, Client ID and Client Name) In the Edit Mode it shows all the value in TextBox On the change of Pan No., It should Populate the new data in TextBox of Member ID, Client ID and Client Name . …

0
66
Member Avatar for Arjun_Sarankulu

I have created a application which connection to sql server database as well as oracle database The application is working fine at my end And to connect to oracle i used following namespace using Oracle.DataAccess; using Oracle.DataAccess.Client; But when i run the application on user end It gives following exception …

Member Avatar for AndrewGrinder
0
10K
Member Avatar for Arjun_Sarankulu

In our Company i have developed the application which starts the Outlook and emails to all clients. As it is manual process to send the same, sometime user might forget to run the application. To avoid the same we have planned to run the Application using Task Scheduler from Window …

Member Avatar for Ketsuekiame
0
461
Member Avatar for Arjun_Sarankulu

I have created login application using spring in my local machine using Apache + Eclipse. I exported WAR of the same without setting the target server as i am deploying the same on sun web server. Application successfully deployed on sun web server. Successfully opens welcome page when click on …

Member Avatar for Arjun_Sarankulu
0
249
Member Avatar for Arjun_Sarankulu

I have done RND on Spring Application development on Apache Server at home which works fine. Now we are about to start the development of web application using Spring in my company. Is Spring deployment is feasable with **sun java system web server** And which tool to prefer for development …

0
78
Member Avatar for Arjun_Sarankulu

I have developed a web appication for Hospital which manages Patient Information. When the web application is simultaneously opened on more than one machine. While filling data on one machine it redirect to next page which autogenerates SID. but when user at the same time try to fill data from …

Member Avatar for nmaillet
0
139
Member Avatar for Arjun_Sarankulu

For Security Concern, I am using mssql_execute(). I am not getting way to get the recordset return from procedure. Below is my sample code $query = mssql_init("USP_GET_ICIN_DATA",$mssql_link); mssql_bind($query, '@ICIN_NUMBERS',trim($icin_data), SQLVARCHAR, false); mssql_bind($query, '@FROMRECORDNUMBER', $start, SQLINT4, false); mssql_bind($query, '@LIMIT', $limit, SQLINT4, false); $result = mssql_execute($query); while ($row = mssql_fetch_assoc($result)) { $icin …

Member Avatar for Arjun_Sarankulu
0
142
Member Avatar for Arjun_Sarankulu

I have String. Var Str = "INC300051546,INC300051553,INC300051561,INC300051579" I want to check there should not be seperator other than comma in the string. And Comma Seperated String should contain INC as 1st three character and after that 9 digits followed by comma. Is there any regular expression to validate the string.

Member Avatar for Taywin
0
170
Member Avatar for Arjun_Sarankulu

I have a crontab job in which data from csv file get insert into mysql table at regular interval. Now i want the same table data to be inserted in ms sqlserver database. I know i can write code again to take data from csv to ms sqlserver database. But …

Member Avatar for rayidi
0
145
Member Avatar for Arjun_Sarankulu

I am developing Window Application in C#. In which i need to Send email using Outlook And to read the unread mails from Outlook and to get the undelivered mails from Outlook. I am able to send and read the unread mails from Outlook. But not able to read the …

Member Avatar for jijo cleetus
0
237
Member Avatar for Arjun_Sarankulu

In C# i need to read the Excel File using Interop. I am using : **using Excel = Microsoft.Office.Interop.Excel;** And i am able to read data from Excel File. Problem is in my Sample Excel File there are only 6 rows and it also reading more than six rows. It …

Member Avatar for thines01
0
102
Member Avatar for Arjun_Sarankulu

I have a csv upload utility for my company. When user run the application in the drop down user get the table name in which insert the data (data from file browse) when table column type is date it gives error "source type of string cannot be cannot to destination …

0
49
Member Avatar for Arjun_Sarankulu

I have created Following Function which takes 2 parameter [CODE] CREATE OR REPLACE FUNCTION Inst_Param_Desc(constant_Val IN varchar2(2), display_name1 IN varchar2(40)) RETURN VARCHAR2 IS Front_Display_Name VARCHAR2(40); Enum_Id number(4,0); BEGIN select b.enumeration_id into Enum_Id from xyz b where b.display_name = display_name1; SELECT a.front_end_display_name INTO Front_Display_Name from abc a where a.enumeration_id = Enum_Id …

Member Avatar for Arjun_Sarankulu
0
126
Member Avatar for Arjun_Sarankulu

I have html page(Main_Frame.html) which contain two frames. 1)abc.php 2)xyz.php How can i auto refresh abc.php without refreshing the whole.

Member Avatar for diafol
0
87
Member Avatar for Arjun_Sarankulu

I have developed the html Frame. Which contain two php pages First show the data in the table which is comming from database and refresh after 30sec and click on the tr it shows the data in the second frame as in graph(candle chart). Everything is working fine. But Problem …

Member Avatar for pritaeas
0
83
Member Avatar for Arjun_Sarankulu

I was succesful in reading csv file and writing to txt file But am facing problem while writing to database. Can any one help me for the same Thanks for your support

Member Avatar for Cameronsmith63
0
669
Member Avatar for Arjun_Sarankulu

I have main page as contain the frameset In that there are three frame 1)html page as 1.html 2)which shows the chart data as chartdata.php 3)the combox box with submit button click.php I want the combox box selected value in chartdata.php Can anyone say how can i achieve the same. …

Member Avatar for pzuurveen
0
87
Member Avatar for Arjun_Sarankulu

I have developed the Server client application(TCP) which works fine. I need to start the server and the client do request and get the desired ouput. I want the server application to run on client machine some what like windows service(when the system boots the services starts). Can anyone suggest …

Member Avatar for Arjun_Sarankulu
0
217
Member Avatar for Arjun_Sarankulu

i have two column in table select Col1 + ' ' + Col2 from test It gives output as Arun Kumar But i want output as Arun Kumar Can anyone help me out

Member Avatar for Arjun_Sarankulu
0
275
Member Avatar for Arjun_Sarankulu

create table test2 (Roll_ID int ) insert into test2 values(1) insert into test2 values(2) insert into test2 values(3) insert into test2 values(4) insert into test2 values(5) i want output as RollId

Member Avatar for adam_k
0
87
Member Avatar for Arjun_Sarankulu

Procedure is created on SQL server inserting the data from sql server to oracle databse When individually run the query it executed in 10 sec When run through procedure it takes sometime 1.5min and 5min [CODE] CREATE procedure sp_Trade_Book as Begin SET NOCOUNT ON BEGIN TRY --Begin of TRY BLOCK …

Member Avatar for moone009
0
114
Member Avatar for Arjun_Sarankulu

I m running the Sql job as background thread and at the same time showing data from sysjobhistory table in gridview. While debugging the code its shows the data in old and new rows affected from table in gridview but when i put the application in debug or release mode …

Member Avatar for Mirfath
0
143
Member Avatar for Arjun_Sarankulu

I have data in the column '4.00504572690003' when i use select round(4.00504572690003, 2) it gives 4.01000000000000 How can i achieve 4.00 from the same. I tried a lot but didint get.

Member Avatar for adam_k
0
60
Member Avatar for bhagawatshinde

Hi, I am create new setup for my project(.exe). While i am click on exe it will throws an error microsoft has encounred a problem we need to close it. System.data.sqlclient.sql what happens , i am installed in another PC it will work fine . I have allready .netfrmawork an …

Member Avatar for bhagawatshinde
0
101
Member Avatar for Arjun_Sarankulu

I have the application In which i am ruuning the procedure which runs the Sql Job and at the other end i need to show the job history in grid whose query is [B]select job_id, step_id, step_name, message, run_date from sysjobhistory where run_date = replace(convert(varchar(10), getdate(), 121),'-','')[/B] the job which …

Member Avatar for Narue
0
131
Member Avatar for Arjun_Sarankulu

I am developing the tcp client and tcp server application Client is connected to server But on server said i am getting following exception [B]unable to read data from transport connection[/B]. I am working on network programming first time. I googled it a lot but didnt get. Can anyone Escape …

Member Avatar for lolafuertes
0
68
Member Avatar for Arjun_Sarankulu

hi debasis do you any idea about Gridview insert update and delete using Ajax if you dont mind i know normal insert update delete

0
57
Member Avatar for Arjun_Sarankulu

Update spot_price set location = ‘PATAN’ where symbol = ‘CASTORP’ and polling_date between ‘20110730’ and ‘20110806’ Giving sql syntax error. Same query i am using to update another table in sqlserver its working but not in mysql

Member Avatar for Arjun_Sarankulu
0
112
Member Avatar for Arjun_Sarankulu

I am new to Asp.net How can i do insert, update , delete on gridview using Ajax I have search a lot but didnt find

Member Avatar for kvprajapati
0
78
Member Avatar for Arjun_Sarankulu

I have a table customer in ms sql and i have same table in Oracle. I want to insert data from ms sql to Oracle. I am not getting the solution.

Member Avatar for Arjun_Sarankulu
0
375