Forum Replies Created

Viewing 15 posts - 301 through 315 (of 3,544 total)

  • RE: Encrypt a column in sql server?

    Jeff Moden - Sunday, November 5, 2017 11:46 AM

    I'll also say that I'd never tell someone that they're "just" a Developer.

    Oh...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Core T-SQL

    Jeff Moden - Saturday, November 4, 2017 9:15 PM

    :unsure:

    I've only had the pleasure of interviewing 2 people that actually made it...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Migrate SQL Server to new server

    John Mitchell-245523 - Thursday, November 2, 2017 3:37 AM

    I suppose that could be thought of as using the job step as...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Migrate SQL Server to new server

    I don't use configurations (Configuration files) in my packages, I develop and test them on my dev system and change any data source entries in the SQL job steps in...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: How to find the first recurring character of a string.

    Haven't tested it but that looks to be the ticket.

    Except it will not handle repeats of 3 or more, this should though


    WITH cte AS (
        SELECT...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: How to find the first recurring character of a string.


    WITH cte AS (
     SELECT t.N,SUBSTRING(@Str,N,1) AS [C],
       ROW_NUMBER() OVER (PARTITION BY SUBSTRING(@Str,N,1) ORDER BY t.N DESC) AS [RowNum]
     FROM dbo.Tally t
     WHERE t.N <= LEN(@Str))
    SELECT TOP(1) C
    FROM cte
    WHERE RowNum...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Bulk load architecture

    Jeff Moden - Thursday, October 26, 2017 9:10 PM

    sqlenthu 89358 - Thursday, October 26, 2017 6:47 AM

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Table Index

    A huge thanks for your reply Jeff.

    Sorry for the delay in replying

    1.
    Approx 75% of current email adresses are between 20 and 30 chars but I will increase the size...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Table Index

    Jeff Moden - Thursday, October 19, 2017 9:25 AM

    P.S.  No wanting to rely on abbreviations, what does GDPR stand for in this...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: could some one help me with the query below

    I have never used it but according to the spec referenced you are using the wrong quotes, you need to use single quotes as described and two of them within...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: SQL server service account is locking out

    John Mitchell-245523 - Monday, October 16, 2017 2:33 AM

    I'm afraid you've just discovered one of the reasons why a SQL Server service...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Data Flow Task Error: The version of ODBC Source is not compatible with this version of the DataFlow

    sgmunson - Thursday, October 12, 2017 2:07 PM

    Make sure you used the correct program to create the DSN.   Odbcad32.exe is the ONLY...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Data Flow Task Error: The version of ODBC Source is not compatible with this version of the DataFlow

    sgmunson - Tuesday, October 3, 2017 7:57 AM

    I'm pretty sure you can't run SSIS in 64-bit mode AND go after an ODBC...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Get-DbaPowerShell

    Jeff Moden - Monday, October 2, 2017 8:03 PM

    Steve Jones - SSC Editor - Monday, October 2,...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • RE: Code-first vs database-first, any new developments?

    Jeff Moden - Thursday, September 28, 2017 3:59 PM

    Phil Parkin - Wednesday, September 27, 2017 9:17 AM

    Far away is close at hand in the images of elsewhere.
    Anon.

Viewing 15 posts - 301 through 315 (of 3,544 total)