Forum Replies Created

Viewing 15 posts - 8,011 through 8,025 (of 8,753 total)

  • RE: Inner Cursor Error

    Quick question and bear with me hear, but why do you need the cursor, the inner sql has no exec statement?

    😎

  • RE: Filter Multiple Value in SQL

    This should get you started, two different methods.

    😎

    USE tempdb;

    GO

    DECLARE @TDATA TABLE

    (

    Id INT

    ,Calling VARCHAR(12)

    );

    INSERT INTO @TDATA

    (

    ...

  • RE: Do @@Identity And Scope_Identity Always Return The Record Just Added?

    Phil Stratford (6/12/2014)


    Actually, it seems like using IDENT_CURRENT is a terrible idea in the context of my question. As you've pointed out, it returns the last IDENTITY value produced...

  • RE: Just curious, what are your SQL pet peeves ?

    Koen Verbeeck (6/13/2014)


    Sean Lange (6/12/2014)


    below86 (6/12/2014)


    Sean Lange (6/12/2014)


    below86 (6/12/2014)


    I'm just looking at our 'new' datawarehouse design, a former DBA helped start. All the table names start with 'tbl'. :w00t:...

  • RE: Help needed on Sybase to Sql 2012 migration

    Suresh Arumugam (6/12/2014)


    Hi All,

    Can any one please share your experience or thoughts for my above query?

    Thanks.

    My 2 cent on this, as this is a one-off exercise, let the wizard do...

  • RE: sql help

    sqladmin 33439 (6/12/2014)


    how do i change connection database from master database to own database please

    In T-SQL there are two main options, either use a system stored procedure sys.sp_defaultdb or ALTER...

  • RE: Developers vs. DBAs

    JustMarie (6/12/2014)


    The DBAs keep my database servers running and happy. In return I keep them informed of things that may impact (or may not) the database servers.

    Going to have...

  • RE: Backup and XP_CMDSHELL move .bak files

    Second thought:w00t:

    why not backup straight to the network drive? No need to write the backup locally!

    😎

  • RE: Stored Procedure performane hit after migrating to 2012

    Sathvik (6/12/2014)


    Hi All,

    Recently we have migrated sql server 2008R2 server to 2012, But after migration one of the stored procedure is taking 2mins execute in 2012 server. It took...

  • RE: Backup and XP_CMDSHELL move .bak files

    Quick thought, wouldn't it be simpler to have an SSIS package for shuffling the backup files around, no need for XP_CMDSHELL etc.

    😎

  • RE: Developers vs. DBAs

    Throwing in an other 2c, it is much worse when duties and responsibilities fall between the different groups than occasional clashes or issues. And it definitely isn't about who's [put...

  • RE: Developers vs. DBAs

    Eric M Russell (6/12/2014)


    Hollywood should make a film called "A Day Without a DBA" just to show the ignorant public (and cocky app developers) what a total global disaster it...

  • RE: Split csv records to seperate columns

    Have a look at this article

    Tally OH! An Improved SQL 8K β€œCSV Splitter” Function By Jeff Moden[/url]

    😎

  • RE: Single 1.3TB table, crash when trying to built fulltext index

    liudi (6/11/2014)


    Hi all, I'm new to this forum, and really need your help.

    Recently I got a 1.3TB table, has 2.7billion rows and 25 columns running on MSSQL. When trying to...

  • RE: Reduce Log File Size

    What is the Recovery Model for the database?

    😎

Viewing 15 posts - 8,011 through 8,025 (of 8,753 total)