Forum Replies Created

Viewing 15 posts - 16 through 30 (of 55 total)

  • RE: Require help in creating table

    first question is

    do employee for example BBB should have access to "XYZ" and "PQR"?

  • RE: Attachment file is invalid - db mail

    First check permission on store where you getting file,

    if you have permission try put N before files

    @file_attachments = N'\\waccounting\ffwin\images\vendor\ap invoice\13085316.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085317.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085320.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085327.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085338.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085339.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085341.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085344.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085347.TIF;\\waccounting\ffwin\images\vendor\ap invoice\13085352.TIF;\\waccounting\ffwin\images\vendor\ap...

  • RE: Help

    What operating system you have installed on remote machines?

    on server BBB

  • RE: Help

    I have the same problem and i solve that on this way

    go to Component Services screen (Start -> Program -> Administrative Tools -> Component Services)

    Expand Computers

    Expand Distributed Transaction Coordinator

    Right Click...

  • RE: error when add and update in sp

    Sean Lange (10/7/2013)


    SrcName (10/7/2013)


    you can make this on this way

    alter procedure w AS

    exec('ALTER TABLE t ADD x char(1)')

    exec('UPDATE t set x = 1')

    But you can run only once. next time...

  • RE: error when add and update in sp

    you can make this on this way

    alter procedure w AS

    exec('ALTER TABLE t ADD x char(1)')

    exec('UPDATE t set x = 1')

    But you can run only once. next time will be error....

  • RE: SQL 2008 R2 connection strings with OleDBConnection

    view your connections String carefully

    read some example from this site http://www.connectionstrings.com/sql-server-native-client-10-0-oledb-provider/

    best would be to write on some vb forums

  • RE: Recursive Stored Procedure

    one of many ways:

    if isnull(object_id('result'), 0 ) <> 0

    drop table result

    create table result ( state varchar(2), studentId varchar, marks varchar )

    declare @db varchar(500)

    DECLARE @index INT =0

    DECLARE @N...

  • RE: JOIN issue

    if the logic is like this then you may use RIGHT (not in where becouse there is performance problem)

    you can try on this way:

    select * from TABLE1 t join

    ( select...

  • RE: Blocking SPID with Text Data?

    parulprabu (10/3/2013)


    SrcName (10/3/2013)


    create table #temp

    (

    spid smallint ,

    ecid smallint , ...

  • RE: Update Columns dependency over other column on same table

    Sean Lange (10/3/2013)


    SrcName (10/3/2013)


    if you define constraint then you don't have situation for update,

    because there will be no rows with impaired restriction, unless you disable constraint.

    ???

    I am curious how...

  • RE: Update Columns dependency over other column on same table

    if you define constraint then you don't have situation for update,

    because there will be no rows with impaired restriction, unless you disable constraint.

  • RE: Blocking SPID with Text Data?

    create table #temp

    (

    spid smallint ,

    ecid smallint , ...

  • RE: Unable to start SQL Server agent after server restart( Sql Server 2012)

    can you give us more detail about this problem.

    sql error log, sql server entries from event viewer

  • RE: T-SQL and BCP to qureyout to a file on database premissions

    that help many show when you have problem with using bcp.

    Do you have privilege to save file on location where you want to save?

    Do you try to add user name...

Viewing 15 posts - 16 through 30 (of 55 total)