Forum Replies Created

Viewing 5 posts - 121 through 125 (of 125 total)

  • RE: Default Value

    Hope this will solve your problem

    Try this

    CREATE TABLE mytable

    (

    AccId numeric IDENTITY(1,1),

    AccCustumId as (AccId),

    test int

    ...

  • RE: Cannot get SQL Debugging to install/work

    Go to control panel -> Computer Management -> Local users - > Users

    check your user account is part of SQLDebugger account. If you add that you will be able...

  • RE: Column vs. Table Constraint

    Taken from BOL.

    A table constraint is declared independently from a column definition and can apply to more than one column in a table.

    Table constraints must be used when more...

  • RE: URGENT: Arithmetic overflow error converting numer

    I have faced a simmillar problem like this, but by reading the mails the solution to problem won't be with the varchar data type I feel.

    Check any of your sql...

  • RE: Inner Joins

    Is there any way to use the update in this context.

    Like...existing rowid should be updated.

    non-existing rowid should be inserted.

    update b

    Set b.column1=a.column1,b.column2=a.column2,b.column3=a.column3

    from table2 as b

    right join table1 as a...

Viewing 5 posts - 121 through 125 (of 125 total)