Forum Replies Created

Viewing 15 posts - 1,111 through 1,125 (of 1,219 total)

  • RE: Odd performance query behavior on very large 40 TB partitioned table in distributed view, maybe it's tipping?

    To be able to troubleshoot something, I need full information, yes. Here I was wondering whether the only the JUL2013 was indexed - that certainly asks for trouble. And I...

  • RE: Odd performance query behavior on very large 40 TB partitioned table in distributed view, maybe it's tipping?

    TheSQLGuru (7/18/2013)


    Hey Erland!! What are you doing here - are you lost?

    Yes, I lost an NNTP bridge to the MSDN forums. I figured that if I have to answer...

  • RE: NETWORK SERVICE cant read system view

    ericjorg (7/18/2013)


    1) What do you mean by "Sign the module?" I looked for a way to sign the stored procedure, but couldn't find a way to do it.

    ADD...

  • RE: Disable database user

    Fraggle-805517 (2013-07-18)


    Is there a way to disable the user or unmap it from the login?

    REVOKE CONNECT TO thisuser

  • RE: Any suggestion on tunning this Stored procedure

    I forgot: Change SET ANSI_NULLS OFF to ANSI_NULLS ON. ANSI_NULLS OFF is a legacy setting, and there are features in SQL Server that are unavailable when this setting is OFF.

  • RE: Any suggestion on tunning this Stored procedure

    As Sean says, there is not much we can do with the query alone.

    However, this:

    and DATEDIFF(d, @SDate, a.dDateCreated) >= 0

    and DATEDIFF(d, @EDate, a.dDateCreated) <= 0

    is better written as

    and...

  • RE: Can SSMS be made to display a column wider?

    SSMS will size the columns of the width for the data that is displayed on the first page in the grid. To expand the size for the rows you are...

  • RE: Odd performance query behavior on very large 40 TB partitioned table in distributed view, maybe it's tipping?

    In difference to Kevin, I think that that there is some hope that we may be able to help you in this forum, and save you the cost from hiring...

  • RE: Reason for Migrating SQL 2012 to SQL 2014

    I'm not sure that I know what Grant is talking about. There some changes to the optmizer, as described in Books Online:

    Query plans

    SQL Server 2014 includes substantial improvements to the...

  • RE: converting an date from oracle to a regular datetime in sql

    DECLARE @oracledate varchar(50) = '25-JUN-13 12.01.15.096000000 AM'

    select try_convert(datetime2, substring(@oracledate, 1, 12) + ':' +

    ...

  • RE: Insert bulk failed due to a schema change of the target table.

    haiao2000 (2013-07-17)


    One more question, if I know for the fact that each of the bulkcopy batch usually has no more than 100 records. Is it still necessary to set batch...

  • Viewing 15 posts - 1,111 through 1,125 (of 1,219 total)