Forum Replies Created

Viewing 15 posts - 1,426 through 1,440 (of 3,008 total)

  • RE: Delete query - Huge table

    If you are deleting most of the rows and you have enough space, it might be faster to insert the rows you are keeping into a new table, and renaming...

  • RE: Faster ETL import process

    The first thing you should determine is how long each statement is taking.

    If it is the second step (INSERT INTO [ESSBASE_TEST_DW].[dbo].[fct_Logs]) that is taking too long to run, there is...

  • RE: dateDiff question

    SQL_NuB (4/14/2010)


    how would I do a "calendar" table?

    Date Table Function F_TABLE_DATE

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61519

    Function F_TABLE_DATE is a multistatement table-valued function that returns a table containing a variety of attributes of all dates from...

  • RE: Are you preparing for SQL Server 2008 R2?

    The only feature I have seen in SQL 2008 R2 that really looks worthwhile is Standard Edition backup compression.

  • RE: Using the @ symbol in an SP name

    Sounds like a bug in RedGate SQL Compare. Contact them and ask them if there is a fix.

  • RE: How to split one mdf file into multiple file

    If your real issue is backup performance, then the best thing you can do will be to use a third party backup product, like SQL LiteSpeed or Redgate Backup. ...

  • RE: Purpose of few SSIS Packages

    I used SSIS to implement a real-time currency arbitrage system that drives the vast majority of trades world-wide.

    It’s also a great tool for development of industrial process-control systems for oil...

  • RE: avoiding dynamic sql for updating

    weezie (4/8/2010)


    I'm not totally against using dynamic sql.

    But it can become more difficult to debug and maintain over time.

    Also, there can be a performance loss.

    It can be simpler to maintain...

  • RE: avoiding dynamic sql for updating

    Why is it important to avoid dynamic SQL?

  • RE: How many of you are not true DBA's?

    GSquared (4/8/2010)


    Michael Valentine Jones (4/7/2010)


    What's a "true DBA"?

    Shouldn't your screen name be "PPilate" if you're going to be asking that kind of question? πŸ™‚

    I wash my hands of this thread.

  • RE: How many of you are not true DBA's?

    What's a "true DBA"?

  • RE: Talking baseball

    There is no reason to think that what you described would happen.

    It would allow teams to exist in small market with say 1-2 million people in a metro area because...

  • RE: Talking baseball

    Baseball would be better with a true open market: uncapped salaries, no draft, and uncapped ownership. The reason that the Yankees can generate so much money is because...

  • RE: SQL 2008 Compressed Backups

    I like the fact that you can restore a 2008 compressed backup on any edition of SQL Server 2008.

    Much nicer than having to install LiteSpeed on a server in order...

  • RE: Cursor - trying to find another method

    Based on my understanding of your requirements:

    declare @t table (

    RegionName varchar(10) not null primary key clustered,

    [Min] int not null,

    [Max] int not null,

    [NumberToGenerate] int not null

    )

    insert into @t

    select 'Region 1',...

Viewing 15 posts - 1,426 through 1,440 (of 3,008 total)