Forum Replies Created

Viewing 15 posts - 16 through 30 (of 53 total)

  • RE: Optimizing loads from linked server

    Hi hogpen, and welcome to the forum πŸ˜€

    Good thing would be also to drop non clustered indexes on your claimdetail table before ETL and recreates them after.

    Hope it helps....

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Recovery senarios

    There are times in production environments when your database is unresponsive because of the size of your transaction log, disk is full, backup of your log doesn't work (true story)...

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Profiler

    Not related, but with sql server 2012 you have now Extended events, pretty similar to SQL Server profiler but with better performances and scalability. Check it out ! πŸ˜€

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Recovery senarios

    Thanks GilaMonster, my post is of course applicable only during extreme emergencies. πŸ˜€

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: SSRS and Clustered DB engine in 2008

    Ok. Never did it. But found this :

    http://ermahblerg.com/2012/11/08/cluster-ssrs-in-2008/[/url]

    Hope it helps. 😎

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: how to handled Nulls and empty values in sql server

    Hi asranantha, πŸ˜€

    I would use COALESCE AND CASE, because it's SQL standard.

    SELECT CASE COALESCE(your_column,'NA') WHEN '' THEN 'NA' ELSE your_column END

    Hope it helps. 😎

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: SSRS and Clustered DB engine in 2008

    Hi Benki, πŸ˜€

    I think SSRS is not cluster aware.

    Check this post :

    http://technet.microsoft.com/en-us/library/bb630402.aspx

    Hope it helps.

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Differential restore issue - file not found....

    Hi ben, πŸ˜€

    select your msdb.dbo.backupset table to see what are your available backup sets.

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Profiler

    Hi cdl_9009, welcome to the forum πŸ˜€

    I don't know if i did understand your question but you can create templates within sql server profiler this way :

    Click File >...

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Storage arrays/RAID configurations

    Hi Steve, this is called a RAID 5E right ?

    Why not RAID 0 for the transaction log ?

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Recovery senarios

    Hi amitsdba, and welcome to the forum. πŸ˜€

    If you run out of space and sql server becomes unresponsive, switch the database’s recovery model to simple . This empties out...

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Export Data from SQL Server 2000 or earlier

    If you are trying to insert data from sql server 2000 into an earlier version of SQL Server, you can use linked servers.

    insert into schema.table select * from linkOldSql2000.old_db.schema.table

    insert...

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Execution result of SQL Server procedure as script

    Found this post :

    http://community.dynamics.com/gp/b/ifks/archive/2011/07/20/sql-script-for-generating-insert-statements-from-table-data.aspx%5B/url%5D

    Might help you.

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: Query to Stored Procedure

    Use the distinct clause :

    SELECT distinct *

    FROM USER_PRFL up

    INNER JOIN BSP_LOB_Grp_Lookup bl ON bl.BSP_LOB_GRP = up.User_Group

    INNER JOIN IMPACTED_LOB il ON il.BSP_LOB_CD = bl.BSP_LOB_CD

    WHERE(up.User_Id= USER_ID AND @ReportingViews = 0)

    OR(BSP_LOB_GRP...

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

  • RE: SQL Server-Table having 40 Billion Records

    pawan.khandelwal (10/18/2013)


    Yes, that column is also indexed.

    Are column1 and column2 of your select clause included in the index ? If not, this is not a covering index.

    Hope it helps.

    Jonathan Bernardez Bernardez
    ___________________________________________________________
    DBD. MCSA SQL Server 2012

Viewing 15 posts - 16 through 30 (of 53 total)