Forum Replies Created

Viewing 15 posts - 1,741 through 1,755 (of 2,463 total)

  • RE: Label/Value Pair

    CREATE FUNCTION [dbo].[uf_utl_SplitNString]

    (

    @InStr nvarchar(4000) = null ,

    @token nvarchar(4000) = ','

    )

    RETURNS @RtnElement TABLE ( item nvarchar(4000))

    AS

    BEGIN

    declare @rec_no int

    declare @pos int, @tokenlen int

    declare...

  • RE: Disk Space

    /************************************************************************

    *

    * Author: Rafal Skotak

    * Purpose: Procedure displays amount of disk space used by databases per directories

    * Date: 2008-01-14

    *

    ************************************************************************/

    if exists(select * from sysobjects where id = object_id('dbo.proc_get_db_files_size') and xtype = 'P')

    drop...

  • RE: Longest recipient list in JOB

    finally i got fix for this problem instead oif having concatenated email id , i replaced it with group ( active directory email group ) which contains all email...

  • RE: Where are you?

    tosscrosby (5/4/2010)


    Bhuvnesh (5/4/2010)


    Brandie Tarvin (5/4/2010)


    Bhuvnesh (5/3/2010)


    I dont understand why we have very few girls in database field ? , i think ROLLBACK doesnt work for them 😀

    There's...

  • RE: Minimising use of tempDB during large INSERT

    Paul White NZ (5/4/2010)[hrHave you considered using a SELECT...INTO statement to create the table at the same time as loading? This can be minimally logged too, and is generally...

  • RE: Where are you?

    Brandie Tarvin (5/4/2010)


    Bhuvnesh (5/3/2010)


    I dont understand why we have very few girls in database field ? , i think ROLLBACK doesnt work for them 😀

    There's a joke here I...

  • RE: Difference between PARTITION BY and GROUP BY

    Santosh Bandhu (5/4/2010)


    What I read I can use PARTITION BY clause with aggregate functions to more or less achieve similar result set as with using GROUP BY clause (probably event...

  • RE: Difference between PARTITION BY and GROUP BY

    Gianluca Sartori (5/4/2010)


    PARTITION BY is used in windowed aggregates.

    can you give any example ?

  • RE: Minimising use of tempDB during large INSERT

    Drammy (5/4/2010)


    During execution I saw the tempDB grow from the default 8MB to over 5GB.

    now i am curious to see execution plan

  • RE: Joining two tables with different collation settings

    deepthi818 (5/4/2010)


    Thanks for replying..

    still you need any help , you are welcome:-)

  • RE: Overlapping indexes

    NewBeeSQL (5/4/2010)


    Nope..you misunderstood..

    overlapping indexes are the indexes which overlapped over the columns...for example..if i have 3 indexes..

    index 1 is on Table1 on col1,col2,col3

    index 2 is on Table1 on col1,col2

    index 3...

  • RE: Minimising use of tempDB during large INSERT

    Drammy (5/4/2010)


    My issue with posting the execution plan is it exposes all the values I have had to obfuscate in the statement.

    ok thats fine , find out the culprit...

  • RE: Overlapping indexes

    NewBeeSQL (5/4/2010)


    I was given a task to find out overlapping indexes and disable from my db....can any one show me the path on how to find overlapping indexes??

    what do...

  • RE: Minimising use of tempDB during large INSERT

    Drammy (5/4/2010)


    Yes, there is indexing on the source tables.

    I have run this through the SQL Database Engine Tuning Advisor on a few different sample databases now and have built the...

  • RE: Minimising use of tempDB during large INSERT

    Drammy (5/4/2010)


    There is no indexing on the target table, the table gets created just before its population.

    and what about the source tables (included in left joins ) ?

Viewing 15 posts - 1,741 through 1,755 (of 2,463 total)