Forum Replies Created

Viewing 15 posts - 2,311 through 2,325 (of 6,041 total)

  • RE: Ensuring logins are not used

    If you've enabled login auditing, and you've confirmed no logins for past month, then should do it. At this point disable them and have an email alert notify you in...

  • RE: Fuzzy Matching

    J Livingston SQL (9/6/2016)


    -- just for fun

    SELECT[dbo].[DoubleMetaPhone]('Pheasant');

    SELECT[dbo].[DoubleMetaPhone]('Phesant');

    SELECT[dbo].[DoubleMetaPhone]('Fessant');

    SELECT[dbo].[DoubleMetaPhone]('Fezant');

    SELECT[dbo].[DoubleMetaPhone]('Phes ant');

    SELECT[dbo].[DoubleMetaPhone]('Fez aunt');

    quite impressive

    Still there is the issue that two words sounding alike are completely different.

    SELECT[dbo].[DoubleMetaPhone]('Pheasant');

    FSNT FSNT

    SELECT[dbo].[DoubleMetaPhone]('Fussy Aunt');

    FSNT FSNT

  • RE: User (db_datareader) can't see tables in MS; can SELECT data!

    By default, VIEW DEFINITION (access to DDL text of an object) is denied. You can grant this a user at the server, database, schema, or object level. The following article...

  • RE: NCAs and NDAs

    mjh 45389 (9/6/2016)


    Many years ago I volunteered for redundancy (it was a case of that if you volunteered you got a fairly generous payoff but if did not you would...

  • RE: Fuzzy Matching

    'ABC Lickers' is probably an entirely different business.

  • RE: NCAs and NDAs

    Here in the US, local state laws can limit non-compete agreements or subject them to a restricted interpretation. Whether a court will uphold a disagreement depends on whether the NCA...

  • RE: Towards a Single Management Stack

    PowerShell is essentially a system integration tool. It needs to be: robust in terms of features, portable, easy to use, and broadly accepted (a large user base). It seems to...

  • RE: Who can afford Senior DBA?

    There are plenty of good high paying DBA opportunities out there. Reading the original post, it seems like you are primarily a DBA who moves between contract assignments. It's possible...

  • RE: Does Log Data Belong in a Table or a File?

    If we're talking about error logs, then one major issue with containing the log records within the database is that, if the database is down, then you don't have access...

  • RE: Who can afford Senior DBA?

    I was in the market last year. There are positions open that, at least based on job description, could only be filled by a senior level DBA / Datbase Developer,...

  • RE: Tempdb high i/o but no memory pressure

    The following will tell you who and what is currently in TEMPDB and has contributed to it's growth. You'll have to dig deeper to determine why.

    USE TEMPDB;

    -- TEMPDB allocated...

  • RE: The Copy Cat Poll

    2,000+ small remote retail POS instances get transactionally replicated to four larger on-presises replicas, which get consolidated into one big ODS, which gets partially replicated for reporting purposes to various...

  • RE: Why does the query optimizer choose this way?

    ChrisM@Work (9/2/2016)


    GilaMonster (9/2/2016)


    Abort reason is "Good enough plan found" (properties of the SELECT). Optimisation has multiple phases, "Good enough plan found" means that at the end of one phase the...

  • RE: Password Repository Software with SQL database back end

    We use Thycotic SecretServer as our enterprise password and key vault solution. It supports domain and two-phase authentication. Looking at this architecture document, it appears the product does use SQL...

  • RE: Datetime as INT

    ThomasRushton (8/31/2016)


    Eric M Russell (8/31/2016)


    There are no dumb questions, only dumb decisions. Whoever designed the MSDB job activity tables didn't make the temporal columns as user friendly as they could...

Viewing 15 posts - 2,311 through 2,325 (of 6,041 total)