Forum Replies Created

Viewing 15 posts - 3,721 through 3,735 (of 5,103 total)

  • RE: The ARRAY In SQL Server 2000

    Nice Article by the way  I would like to correct some comments in it though

    >> A similar process is required for TV, but...

  • RE: importing images in to a table

    Have a look at TextCopy.exe under the MSSQL\Binn directory

     

  • RE: SP knowing NT detail

    have a look at:

    IS_MEMBER ( { 'group' | 'role' } )

  • RE: UPDATE the same row multiple times in one query

    OK this is the revised  (and checked) version

    Update table1

    set value = t2.minval, status =t3.st

    from table1 t1

     left join

           (select , min(value) minval

            from table2

            group by ) t2 on...

  • RE: UPDATE the same row multiple times in one query

    I haven't tested this but it should be pretty close to what you need:

    Update t1

    set value = t2.minval, status =t3.st

    from table1 t1

     join

           (select key, min(value) minval

            from table2...

  • RE: UPDATE the same row multiple times in one query

    Can you post sample data and sample result.

    Usually what you do is to compute how it is supposed to be and perform just one DML

  • RE: Server Rename

    You will probably have to re-register the server name if you didn't used (local) on EM but that is not a big deal (Besides That's the recommended way). QA is...

  • RE: Tree structure in table

    How do you call this ...?    "Self promotion"

  • RE: Monitoring Tool

    If you want to pursue the SQL solution go the SQL Server Alert path they are very very powerful and can help you get where you want very easily (Every...

  • RE: Server Rename

    No you won't only need to

    sp_dropserver 'old name'

    sp_addserver 'new name', 'local'

    For more:

    http://www.sqlservercentral.com/columnists/bknight/renameserver.asp

    hth

     

  • RE: What''''s the best way of

    Mark and Tim,

    I believe you HAVE TO read the Link posted by Frank. It is not about dynamic sql is dynamic search. In there you can find both options as...

  • RE: NULLS in Primary Keys

    I believe that marking them as NFR will do! I came across something similar when trying to perform bidirectional Trans. Repl. and the One of the triggers was misssing the...

  • RE: NULLS in Primary Keys

    David,

    I am assuming that you are using Transactional replication. Do you need to update data at the subscriber? and if so what type of updaing are you using?

    Are the Triggers...

  • RE: Please help with SQL statement.

    Or

    select c.CustomerID, n.Number as [Month], ay.y as [Year]

    from (select Number from master..spt_values where type = 'P' and number between 1 and 12)n

          cross join (select distinct CustomerID from dtes) c

         ...

  • RE: Filtering shaped recordsets

    SHAPE { SELECT * FROM DT_PERSON  where exists (select * from DT_QUALIFICATION q where DT_PERSON.PersonID = q.Person_ID) }

    APPEND({SELECT * FROM DT_QUALIFICATION} RELATE Person_ID TO Person_ID) AS ChildRS

     

    Would something...

Viewing 15 posts - 3,721 through 3,735 (of 5,103 total)