Search:

Type: Posts; User: jbanx; Keyword(s):

Search: Search took 0.00 seconds.

  1. Re: Is integration testing is related to developer or tester

    I have slight disconnect with this reply. As far System testing is concerned as it is a black box testing the test cases doesn't specifically say that this the boundary condition for this...
  2. Re: Is integration testing is related to developer or tester

    In my perspective integration testing is done by the person who is responsible for the functionality. This functionality could be divided into many smaller function and handed over to a developer for...
  3. Thread: inheritance

    by jbanx
    Answers
    4
    Views
    5,153

    Re: inheritance

    Inheritance is a way of reusing the method, properties etc. This allows you to define class for very specific reason and inherit rest of the methods and properties from base class (which again is...
  4. Re: Difference between String.Convert Vs String.ToString

    To tell you more Convert internally uses toString. In convert first there is a check for null, if there is null then string.empty is returned, else normal toString method is called
  5. SQL Re: How to get max of salary from two tables having same data

    Select MAx(MaxSalary) from (Select Max(Salary) MaxSalary from table A
    Union
    Select Max(Salary) MaxSalary from table b) as B

    Hope this will work
  6. Answers
    15
    Views
    30,276

    SQL Re: Delete duplicate records without using "rowid"

    One example is here
    create table t1(col1 int, col2 int, col3 char(50))
    insert into t1 values (1, 1, 'data value one')
    insert into t1 values (1, 1, 'data value one')
    insert into t1 values (1, 2,...
  7. SQL Re: How to update more than one row with a different value

    Certainly using "case" we can update a row with different values !!!
  8. Answers
    2
    Views
    3,252

    SQL Re: Arguments for a function

    I would certainly suggest that if you have huge list of argument list then pass it as comma seperated value and then extract value in SP
  9. Answers
    6
    Views
    4,716

    SQL Re: Dyamic SQL Queries

    Hi,

    Following is one example of dynamic query

    Declare @TableName varchar(128), @ColumnList varchar(1000)
    Declare @SQL varchar(1000)

    set @TableName = 'authors'

    SELECT @ColumnList =...
  10. Answers
    12
    Views
    36,663

    SQL Re: Char and Varchar in SQL

    CHAR
    CHAR should be used for storing fix length character strings. String values will be space/blank padded before stored on disk. If this type is used to store varibale length strings, it will...
  11. Answers
    20
    Views
    36,856

    SQL Re: Insert new column in the middle of a table

    You can't do it but what you can do it is add at the end of the table with alter table add column statement !!!
  12. Answers
    7
    Views
    4,702

    SQL Re: Difference between VARCHAR and VARCHAR2

    This is with reference to Oracle

    VARCHAR
    Currently VARCHAR behaves exactly the same as VARCHAR2. However, this type should not be used as it is reserved for future usage.

    VARCHAR2 is used to...
  13. Answers
    1
    Views
    4,698

    ASP.NET Re: Setting Column header and manipulate DATAGRID

    Here is one of the example:

    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
    ...
  14. Thread: what is trigger

    by jbanx
    Answers
    8
    Views
    5,735

    SQL Re: what is trigger

    An action causing the automatic invocation of a procedure, for instance to preserve {referential integrity}. A triggers goes into effect when a user attempts to modify data with an insert, delete, or...
  15. Thread: what is trigger

    by jbanx
    Answers
    8
    Views
    5,735

    SQL Re: what is trigger

    a trigger is a set of Structured Query Language (SQL) statements that automatically "fires off" an action when a specific operation, such as changing data in a table, occurs. A trigger consists of an...
  16. Answers
    8
    Views
    5,342

    SQL Re: How to alter a type in SQL

    I think followin should work for you
    ALTER TABLE <table name>
    MODIFY houseno varchar2(30) ;
  17. Difference between String.Convert Vs String.ToString

    Hi

    Please explain the Difference between Convert Vs String.ToString
Results 1 to 17 of 17
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact