User Profile

Collapse

Profile Sidebar

Collapse
kirubagari
kirubagari
Last Activity: Dec 8 '16, 09:28 AM
Joined: Jun 25 '07
Location: Malaysia
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • kirubagari
    replied to Datadiff
    Hi Phil,

    Thank you. Im using the SQL server and the query is not detected as SQL query.
    Code:
    Declare @num_hours  Integer
    Declare @num_minute as Integer
    Declare @num_sec as Integer
    
    	
    SELECT file_name, org_rcvd_dts,
            DateDiff("s", bld_start_dts, bld_end_dts)  AS Batch_time, 
            DateDiff("s", cnv_start_dts, cnv_end_dts)   AS Build_time 
    FROM   build_log(nolock)
    ...
    See more | Go to post

    Leave a comment:


  • kirubagari
    started a topic Datadiff

    Datadiff

    Hi ,

    I would like to convert the datadiff to hours,minutes and second and total up batch time and build time in different column . Can expert show how this can be done in below query?

    Code:
    SELECT file_name, org_rcvd_dts,
            DateDiff(hh, bld_start_dts, bld_end_dts)  AS Batch_time, 
            DateDiff(hh, cnv_start_dts, cnv_end_dts)   AS Build_time 
    FROM   build_log(nolock) 
    WHERE  status
    ...
    See more | Go to post

  • Hi Chaarman,

    I'm developing code instance (scheduler) that controls processes in Java.Can i do that in Java example eclipse itself. i'm writing code in window and it will be executed in my window. i wana execute 2 process at one time and setup the job scheduler as well.

    For Eg:
    Code:
    package amz;
    
    import java.util.Random;
    import net.NetworkingTask;
    import graph.SearchGraph;
    import matrix.MatrixMultiplication;
    ...
    See more | Go to post

    Leave a comment:


  • Hi Chaarman,

    Thanks for the response.Im writting a common API for executing process that conform to the interface. Im writing api which create
    a new processor that could execute 2 processes at a time in Java.Im trying to extend my current API to create the job scheduler as well.
    Need some advice on this.
    See more | Go to post

    Leave a comment:


  • kirubagari
    started a topic Create API which can execute 2 process at time
    in Java

    Create API which can execute 2 process at time

    Hi Expert,
    I'm seeking for help to create process of creating a new processor that could execute 2 processes at a time. Currently i'm using eclipse.Is this feasible in Eclipse? Any other software i need to install like java swing or java fx. Appreciate your advice .Thanks in advance
    See more | Go to post

  • kirubagari
    started a topic Oracle Connection Error in C# code

    Oracle Connection Error in C# code

    Code:
      <add key="DB_CONNECTION_STRING1" value="User Id=cimmgr;Password=cimmgr;Direct=true;Data Source=cimdev.world;Port=1521;SID=cimdev"/>
    Code:
          public void InsertintoDB()
            {
    
                string strSQL = "";
                string strDBType = System.Configuration.ConfigurationManager.AppSettings["DBType"];
                string strConn = System.Configuration.ConfigurationManager.AppSettings["DB_CONNECTION_STRING1"].ToString();
    ...
    See more | Go to post

  • kirubagari
    started a topic How to set database execute statement

    How to set database execute statement

    Hi Expert,
    Kindly highlighten me how to set execute statement in the end of sql,
    Attach is my code
    Code:
         private void InsertintoDB()
            {
    
                string strSQL = "";
    
                string strDBType = System.Configuration.ConfigurationManager.AppSettings["DBType"];
                string strConn = System.Configuration.ConfigurationManager.AppSettings["DB_CONNECTION_STRING1"].ToString();
    ...
    See more | Go to post

  • kirubagari
    replied to VB Logic
    Hi Experts ,

    Thanks.Able to solve the problem
    Code:
    Private Sub Command1_Click()
    Dim a As String
    Dim b As String
    ' = "TFSGNT-SAH-CMP-PreMeas"
    a = "ILD-SAH-CMP-Meas-5P25K"
    
    Dim ar
    'Dim br
    Dim intcnt As Integer
    Dim firstStr As String
    Dim secondStr As String
    Dim abc As String
    
    ar = Split(a, "-")
    If UBound(ar)
    ...
    See more | Go to post

    Leave a comment:


  • kirubagari
    replied to VB Logic
    Hi zmbd ,
    Let me explain again.
    I have 2 string.
    Code:
    TFSGNT-SAH-CMP-PreMeas
    ILD-SAH-CMP-Meas-5P25K
    If the string have 3 dash in between, i need to grab the 1st value before the first dash
    Code:
    TFSGNT-SAH-CMP-PreMeas
    Code:
    TFSGNT
    Code:
    ILD-SAH-CMP-Meas-5P25K
    If the string have 4 dash in between, i need to grab first string and Concatenate
    with last string as below
    Code:
    ILD-5P25K
    See more | Go to post

    Leave a comment:


  • kirubagari
    started a topic VB Logic

    VB Logic

    Need some help

    I have 2 string

    String 1: A-B-C-D

    String 2: A-B-C

    If the string have 4 token

    i need take A and concenate with D

    A-D

    if i have 3 token like A-B-C

    i need take the 1st token A

    Please help on this.
    See more | Go to post

  • kirubagari
    replied to VB logic
    Hi ,
    Could you show me the logic.Need some help.
    See more | Go to post

    Leave a comment:


  • kirubagari
    started a topic VB logic

    VB logic

    Hi,

    I have a set of data
    Number Path
    1,2,3,4,5,6 Employee
    2,3,4,6 Employee

    There is 2 column in db.I need to check if the path is same name ,i need to combine the number.
    1,2,3,4,5,6,2,3 ,4,6.
    Kindly help.
    Code:
       If colVIDRemark <> 0 Then
             Set dicVIDRemark = colVIDRemark.Item(i)
             strRemark = dicVIDRemark.Item(KEY_PATH)
    ...
    See more | Go to post

  • Hi All,

    Still having issue.
    Please help.Unable delete the data.The data type is Varchar
    See more | Go to post

    Leave a comment:


  • Unable delete the data if it has space in between

    Hi Experts,
    If i want to delete a data ,lets say RayMond Roy the code that i developed have bugs to delete that.Without space i can able to delete without any problem.Please help

    Code:
     	 response.write "<td align=center><img border=0 src=images/delete.gif alt=Delete onmouseover=this.style.cursor='hand' onmouseout=this.style.cursor='default' onclick=getcell('d','" & rsct("ID") & "','"
    ...
    See more | Go to post

  • Hi,
    Its works.Thanks.
    See more | Go to post

    Leave a comment:


  • Hi,
    Put quotes in between as below.Apperciat e if you can show me

    Code:
        response.write "<tr><td align=center><input id=lotowner_" & rsct("ID")[B] & "&value&=" & [/B]rsct("VALUE") & " size=20 style=text-align:left>"
    See more | Go to post

    Leave a comment:


  • kirubagari
    started a topic Field only display half information.

    Field only display half information.

    Hi Experts,

    Im having problem where if i add value MY TESTING.
    It only display MY only.Please refer attachment.what need to be done so that system will show full character when load ?

    Code:
    set rsfb = server.CreateObject("ADODB.RECORDSET")
    sql = "select ID,title,value,updateby,updatedate from EMPLOYEE where title='lotowner'"
    set rsct = cn.execute(sql)
    maxid = clng(rsct("ID"))
    ...
    See more | Go to post

  • Hi,
    Thanks.
    Should we do this in everypage?
    Auto Logout when the application browser closed.I have logout form.I will update table when user logout from the system.
    Is it any other way than include in all the form ,if application browser closed,update the table.
    Please help
    Thanks
    See more | Go to post

    Leave a comment:


  • kirubagari
    replied to Subscript out of Range
    Hi,
    Please help me.Im not sure how the code get the array data.

    Code:
    function getcell_edit(x){		
    
    
    		//EDIT - pass the new qty as well
    		if (document.getElementById(x+'|editqty').value==""){
    			alert("Please enter quantity!");
    			document.getElementById(x+'|editqty').focus();
    			return;
    		}		
    		if (!/^\d*$/.test(document.getElementById(x+'|editqty').value)){
    ...
    See more | Go to post

    Leave a comment:


  • kirubagari
    started a topic Updata table if user browser window close

    Updata table if user browser window close

    Hi,

    If any of thw browser window closed,how to make sure that user logout from the system.
    I will update a table if user logout from my system.
    If user close any of the browser window,how to make sure that i update the table?Please help
    See more | Go to post
No activity results to display
Show More
Working...