Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)

  • Reply To: MDS Add-in for Excel Office 365 - Error

    Hi Anthony,

     

    Thanks for your response.

     

    I am exactly trying the same now -- x86 plugin. It's not reflecting in Excel yet, reckon needs a system reboot.

     

     

  • Reply To: MDS Add-in for Excel Office 365 - Error

    Hi Frederico,

     

    Just checked and it is --  Microsoft Excel for Office 365 MSO 32-bit

    Does that mean, incompatibility between 32-bit MS Office and 64-bit MDS is the actual cause of this...

    • This reply was modified 4 years, 9 months ago by  ranitb.
  • RE: Clustered PK perf -

  • RE: get starting to last specific string valuesin sql server

    Phil Parkin - Wednesday, June 20, 2018 6:30 AM

    REVERSE() is an expensive operation and your code is way more complex than...

  • RE: get starting to last specific string valuesin sql server

    Something like this ?
    ;with t(txt) as (
        select 'ab_re_uk_u_20101001' union all
        select 'ax_by_us_19991001' union all
        select 'abc_20181002'
    )
    select    txt,
            REVERSE(txt) tmp1,
            CHARINDEX('_',REVERSE(txt)) tmp2,
            LEN(txt) tmp3,
  • RE: Clustered PK perf -

    All - Thank you so much for those wonderful suggestions. Great learning!

    I will analyze all of them and come back with further doubts, if any.

    -RB.

  • RE: Top 2 records with range

    Does this help ?

    select top 2 *
    from (
        select max(u.iduser) iduser, max(u.score) score, s.rangename name
        from    #Users u
                left join #scorerange s on (u.score...

  • RE: SELECT or GROUP BY LIKE

    Something like this ?

    ;with your_table_name(txt) as
    (
    select 'Corning Precision Lens Incorporated' union all
    select 'Corning Precision Materials Co., Ltd.' union all
    select...

  • RE: Clustered PK perf -

    You really should strongly consider defining the clus index before loading the table if at all possible
    > do u mean I should create the index immediately after creating the table structure...

  • RE: SQL Server | Architecture design -

    GilaMonster - Tuesday, April 18, 2017 6:00 AM

    GRANT SELECT, INSERT, UPDATE, DELETE, EXECUTE ON schema::Sales TO <database role>

    That's the basic principal of...

  • RE: SQL Server | Architecture design -

    whenriksen - Tuesday, April 11, 2017 2:51 PM

    I actually prefer using schemas to segregate objects because I find it easier to manage...

  • RE: SQL Server | Architecture design -

    chuck.forbes - Monday, April 3, 2017 9:25 AM

    I feel that if I don't mention something here, that it might come across...

  • RE: SQL Server | Architecture design -

    chuck.forbes - Friday, March 31, 2017 2:14 PM

    Having come from an Oracle shop, I liken databases in SQL Server, to Schemas in...

  • RE: SQL Server | Architecture design -

    Thanks Chris.

    Reg. RBAR - Same was also suggested by experts while working on Oracle dB. It also works best with set-based techniques.

    Another thing I miss from...

  • RE: SQL Server | Architecture design -

    Thanks a lot for your response, Grant. You gave lot of pointers to play further with SQL Server. 
    I will try them out and come with further questions on...

Viewing 15 posts - 1 through 15 (of 15 total)