Forum Replies Created

Viewing 15 posts - 796 through 810 (of 812 total)

  • RE: Tables referenced by a stored proc (2000)

    Last idea: follow the rule of KISS (Keep It Simple & Stupid) write store procedure formatting it with the following rule: every command that reference a table should be on...

  • RE: Tables referenced by a stored proc (2000)

    sysdepends lists tables only if they are in the same database and the sp is created after the table. To update syspedends please ALTER PROCEDURE and then run exec sp_MSdependencies...

  • RE: Acronym Trivia

    I hate UNICODE. It uses a lot memory uselessly. It brings applications to BAD performance. :angry:

  • RE: Tables referenced by a stored proc (2000)

    Please, try this one:

    exec sp_MSdependencies N'[dbo].[mysp_elab]', null, 1053183

    Third parameter is 1053183, that means only table named in the sp.

    Without parms, it returns all dipendencies: table used in the sp and...

  • RE: Tables referenced by a stored proc (2000)

    If you do not use dynamic sql in your sp, you have the sysdepends table with all dependencies between objects.

    Here you are:

    SELECT object_name(id) as sp,object_name(depid) as dep_obj FROM sysdepends

    WHERE...

  • RE: Preferred singer for expert DBA

    From now, every time you'll write a joined query, you'll think to Elthon JOIN.

    In confidence, I prefer Freddy Mercury e his band The QUEEN.

  • RE: The Best Computer

    No doubt: TERMINATOR & friends.

  • RE: Predict output

    GilaMonster (10/14/2008)


    Hence there's an implicit Order by 1 ASC on the statement.

    Also the DISTINCT clause and the GROUP BY perform an implicit ORDER BY for all cols, but "IMPLICIT" is...

  • RE: Predict output

    Without the ORDER BY clause, you can not predict the order of rows.

    NULL, 1 and 1, NULL are both possible.

    In the future release of sqlserver or in another DBMS, the...

  • RE: SUM of FLOAT inconsistency

    brewmanz (10/13/2008)


    T

    It always is correct WITH THIS SET OF DATA. Try adding a couple of zero(e)s at the end of each of the 3 numbers and watch "Msg 8115, Level...

  • RE: SUM of FLOAT inconsistency

    Main rule is never to use float, because of unwanted effetcs:

    Here the version with decimal. It always is correct.

    DECLARE @SumA float, @SumB float

    DECLARE @MyFloat1 float, @MyFloat2 float, @MyFloat3 float

    DECLARE @MyTable...

  • RE: SUM of FLOAT inconsistency

    That's true:

    DECLARE @SumA float, @SumB float

    DECLARE @MyFloat1 float, @MyFloat2 float, @MyFloat3 float

    DECLARE @MyTable table

    (

    ID int primary key identity,

    NumA float,

    NumB float

    )

    SET @MyFloat1 = 10000000000020000

    SET @MyFloat2 = -10000000000010000

    SET @MyFloat3 = 1

    INSERT INTO...

  • RE: Select from stored procedure

    Good idea! But just for few rows result set. Else it takes too long to run if put the result set in join with another table.

  • RE: Things You Didn't Know About Temp Tables and Table Variables

    Another thing never said: when creating temp table is better adding the "collate" to char/varchar/text etc. cause of different collate in tempdb e the current db.:w00t:

  • RE: Query

    I couldn't believe that someone need to use "datename(m,join_date) like '%a%'" to extract rows of Jan, Feb, March, April, May, Aug. :w00t:

Viewing 15 posts - 796 through 810 (of 812 total)