Forum Replies Created

Viewing 15 posts - 6,721 through 6,735 (of 8,416 total)

  • RE: Strange behavior with TVF execution plan

    Ha, so on second look, the same thing answers the second question. When the function does data access (the database numbers table) it can't be deterministic, so SQL Server...

  • RE: Strange behavior with TVF execution plan

    Flo,

    The first part of your question is easy: SQL Server marks all functions as non-deterministic unless they are schema-bound. Schema-binding a function forces the engine to evaluate the content...

  • RE: Index rebuild/reorganize script NOT working

    Online rebuilds generally result in greater residual fragmentation than offline rebuilds. For the 'best possible' results REBUILD offline, with MAXDOP = 1, and SORT_IN_TEMPDB = ON. Also make...

  • RE: Index rebuild/reorganize script NOT working

    Are the tables in question heaps? (no clustered index)

    The script explicitly excludes heaps. The only way to defragment a heap is to create a clustered index on it, and...

  • RE: No Decimal in Reults

    This might assist:

    -- Create a test table variable

    DECLARE @CallLog

    TABLE

    (

    ...

  • RE: update command

    Florian Reischl (11/7/2009)


    Just had a really strange behavior last week which appeared completely stupid to me.

    Feel free to share! PM or The Thread...

    Florian Reischl (11/7/2009)


    As long as I...

  • RE: Role change using Log shipping

    Only one set of jobs will be enabled, depending on which server is primary.

    I would encourage you to try this out in practice (you can log ship from and to...

  • RE: update command

    Newbies??? Flo - in the words of a very popular drink over here..."yeah, right!"

    http://www.tui.co.nz/

  • RE: Deleting Large Tables

    I know I'm late to this party, but I have to say:

    Only shrink if you absolutely must reclaim disk space.

    Shrinking moves pages from the end of the physical files one...

  • RE: Error when creating procedure

    In SQL Server, 'endproc' is not implied, it must be explicitly created as a label.

    A label in SQL Server consists of a single word followed by a colon, so:

    GOTO endproc;

    PRINT...

  • RE: Forcing multiple statements to execute as a single group

    Kevin,

    To answer your question literally, the closest analogue to a synchronized method call would be a transaction (as Florian described) running at the SERIALIZABLE isolation level.

    I think it is really...

  • RE: update command

    Florian Reischl (11/7/2009)


    @paul-2: Thanks for test data! ๐Ÿ™‚

    You're very welcome. I'm hoping that if I do it enough, future posters will get the hint ๐Ÿ™‚

    I know not everything in...

  • RE: Recovery Model

    Hey Lowell,

    I have an uneasy feeling that I am misunderstanding you, but I believe the reference was to the SQL Server Logs (as shown in SSMS):

    Paul

  • RE: Error using sp_send_dbmail

    Lisset (11/6/2009)


    Servidor: mensaje 22051, nivel 16, estado 1, lรญnea 0

    The client connection security context could not be impersonated. Attaching files require an integrated client login

    The user 'rpp' is a SQL...

  • RE: Import and Export

    kiranmca24 (11/6/2009)


    What is the use of Import and Export?

    It allows you to import data to, and export data from, SQL Server databases.

    It is pretty configurable (you can import and export...

Viewing 15 posts - 6,721 through 6,735 (of 8,416 total)