Forum Replies Created

Viewing 15 posts - 2,401 through 2,415 (of 2,469 total)

  • RE: What is the difference between "insert" and "insert into?"

    If your question is only regarding relational data then BOL says:

    [INTO]

    Is an optional keyword that can be used between INSERT and the target table.

    However, if it is about "analysis...

  • RE: More Visas

    My job's not one of moderator but it would be NICE to keep the tone even & friendly and not resort to personal comments - everybody's entitled to an opinion/viewpoint...

  • RE: More Visas

    plumber, electrician or a database developer/administrator - in this constantly changing/evolving world - DATABASES ARE INDISPENSABLE & HERE TO STAY

  • RE: More Visas

    The bottom line - it's all about keeping the cash registers ringing constantly - the question to ask is - if you were a company (pick corporate giant) & you...

  • RE: Front end

    what about vb ?! (have never worked with Access so can't comment on it)

  • RE: Creating Tilda separator files

    Have you tried using a "Replace" function?! Either directly with the ~ character or with the acii value (126) ?!

  • RE: Update row from within function

    Ian seems to have other constraints that he cannot use within an UDF - you can use a select statement to return recordsets from the procedure & I've used concatenated...

  • RE: Update row from within function

    Ian - here's some stuff that might help you start looking in the right direction....(re:BOL)

    Returning Data from a Stored Procedure

    Microsoft® SQL Server™ 2000 stored procedures return data in four forms:...

  • RE: Retention

    Companies can rely on imported slave labor so they treat you like dirt - employees know that if they lose this job then there are either zillions of "slaves" ready...

  • RE: Retention

    I once interviewed for a job where the tech lead actually told me that he considers people who have jumped several jobs over as many years more valuable because it...

  • RE: Update row from within function

    eg: this may help get you started.....

    CREATE PROCEDURE MyProcedure

    @RowIDInt,

    @NumericVal Int

    AS

    DECLARE @ReturnVal Int

    BEGIN

    UPDATE MyTable

    SET NumericVal = NumericVal + @NumericVal

    ...

  • RE: Update row from within function

    Ian - you can get more than a success/failure return from a stored procedure - you can get back a single value; a recordset - whatever you want!

  • RE: Update row from within function

    Use a stored procedure.

  • RE: Timestamp Column

    You use a timestamp field so that changes to a row can be detected......

    What is the advantage of this as opposed to using - say - a rowlock ?!?!

  • RE: Timestamp Column

    Chris/Remi - I have several questions:

    1) when I go to specify a datatype - I do not see "rowversion" in the dropdown.

    2) BOL specifically says "To record the times data...

Viewing 15 posts - 2,401 through 2,415 (of 2,469 total)