Forum Replies Created

Viewing 15 posts - 4,126 through 4,140 (of 7,504 total)

  • RE: Partitioning - Merging an Empty Partition is not instantaneous - why?

    Nice testing Gabe.

    Thank you for the feedback.

    One of my co-workers discovered the same and it is a valuable lesson.

    It is certainly worth to know, because everyone experimenting with partitioning and...

  • RE: SQL Server 2005 SP 3

    Lynn Pettis (1/7/2009)


    Okay, I will look into that tomorrow morning (well, it is almost tomorrow morning now for me) when I get into work. I'll let you know what...

  • RE: Installing SQL-Server 2005 SP3

    Dugi (1/10/2009)


    I didn't read in deep for the Resource DB, I just was wondering why the other Sys DBs are available for BCK and RDB is not ! Anyway thnx...

  • RE: Hidden RBAR: Triangular Joins

    Right there with you Lynn.

    To me ansi is the guideline, "dialect" will get used whenever ansi doesn't perform as it should.

    IMO that's where any DBMS will try to make a...

  • RE: Case Insensitive Db on Case Sensitive Server

    As Manu stated you need to use SQL_Latin1_General_CP1_CI_AS

    CREATE DATABASE [yourDbName] ON PRIMARY

    ( NAME = N'yourDbName_data'

    , FILENAME = N'X:\MSSQL.1\MSSQL\Data\yourDbName_data.mdf'

    , SIZE = ..., MAXSIZE = ..., FILEGROWTH =...

  • RE: problem with cursor

    vikas bindra (1/19/2009)


    Also, you don't need the outer cusor: ...

    Right on target :exclamationmark:

  • RE: problem with cursor

    No reason to shout 😉

    Why are you using a cursor for this in the first place ?

    SELECT MAX(TRANSACTIONID) FROM UDMLastTransaction

    It would be better to just select it directly into a...

  • RE: Displaying SQLSErver locked Records.

    are you using 'implicit transactions' ?

    If yes: that will issue a "begin transaction" before the first statement you perform and you'll need to commit/rollbak in the end of whatever...

  • RE: Inefficient Join involving linked server

    neil (1/19/2009)


    One of my clients is running a select statement as part of a report. The problem is that is takes 5 minutes to run despite only returning 500 rows.

    Investigating...

  • RE: Hidden RBAR: Triangular Joins

    Joe Celko (1/17/2009)


    If SQL Server was up to ANSI/ISO Standards, we would have POSIX style regular expression in the SIMILAR TO predicate, like other SQLs. This is one...

  • RE: Partitioning - Merging an Empty Partition is not instantaneous - why?

    Gabe (1/18/2009)


    I figured it out. Well not really, but I figured out a way around it.

    For some reason, both partitions have to be empty for it to be an instant...

  • RE: Selecting from temp table outside SP?

    - one of the advantages is the awareness of what one is creating.

    ( cfr select only the columns you need)

    - if in the case, some columns should always be...

  • RE: Sql server restart

    It is a bad practise to restart sqlserver instances if not explicitly needed !

    (all cached objects will need physical IO to get cached again (your apps will notice !), all...

  • RE: Selecting from temp table outside SP?

    one thing that can bite you nasty is your local (temptb) copy of source data.

    1) create your temp tables up front in stead of using select into.

    2) only select the...

  • RE: Proportional Fill and Tempdb - 1 Data File Per Processor

    DBADave (1/16/2009)


    ...If they don't I will turn off auto grow and restart the instance and see if this resoves the issue of the files not growing proportionally....

    turn off auto...

Viewing 15 posts - 4,126 through 4,140 (of 7,504 total)