Forum Replies Created

Viewing 15 posts - 3,181 through 3,195 (of 49,571 total)

  • RE: A Call for Articles

    jevitts (4/25/2016)


    but something comprehensive might help someone else in the future!

    Shameless plug: Something more comprehensive is in the works, but not in the immediate future. 😀

  • RE: Disable SQL Login vs deleting an SQL DB User

    Tava (4/26/2016)


    3. Use some .net code to call a SP using step 2 user.

    To do that, the user running that code requires impersonate permissions on User2. That's a fairly high-level...

  • RE: Failed 70-462. Worth doing 70-461 before resit?

    zkim143 (4/26/2016)


    70-462 Free Sample questions are available on [redacted] website free of cost. You can prepare your 70-462 Exam with the help of dumps.

    For anyone reading this, dumps are...

  • RE: Disable SQL Login vs deleting an SQL DB User

    If you remove the database users, the person can still log in and access the server. Depending on their server-level permissions, they may still be able to access the databases.

    If...

  • RE: Specialist or Generalist

    Specialist, in something you enjoy, not the latest thing that pays well. But keep in mind that specialise doesn't mean you know nothing about anything outside of that speciality. You...

  • RE: Database Backup Terminating Abnormally (Disaster) :(

    elie.etaxpoint (4/26/2016)


    Hi,

    🙁 Our last daily backup was last April 24, on April 25 it fails 🙁 can't restore to it.

    And the backup before that? Or older ones? What's the newest...

  • RE: SQL Server Memory is Full (Urgent help!)

    info.sqldbamail (4/26/2016)


    We have production SQL Server 2012, where we had allocated Max memory of ~60 GB and Min Memory of 4 GB, We have the following situations and if it...

  • RE: Statistics on every column?

    No, but other than the time that the manual stats updates take, not too much downside either. They're not large, and those that aren't useful won't get autoupdates triggered.

    You can...

  • RE: SQL Server 2008 reboot on attempted password change

    Wow, that's a new one

    Anything interesting in the error log?

  • RE: separate servers prod/Dev...

    In short, yes, maybe and yes.

    Dev and Prod absolutely have to be separate. Permissions is one reason, people who have high privileges on dev often shouldn't have elevated rights on...

  • RE: How to Find Percentage using a recursive cte

    Just one point. CTEs don't start with a ;.

    The semicolon is a row terminator. Your code should be

    declare @Parameter nvarchar(4000);

    set @Parameter = 'Urbanisation';

    With tmp as (

    Select Count(*) as Base, DayOfInterview,...

  • RE: Default Value RAND issue

    Jeff Moden (4/22/2016)


    Welsh Corgi (4/22/2016)


    MadAdmin (4/22/2016)


    guessing that it should be (rand())

    Will check ina bit.

    Thanks it worked.

    Does this look right?

    ALTER TABLE tblCall

    ADD CONSTRAINT DF_ReinspectTag

    DEFAULT (rand()) FOR ReinspectTag

    It works but...

  • RE: IF, THEN in T-SQL?

    vivekshekhar-743222 (4/25/2016)


    I guess you need to refer DEPTCode without prefixing it with P. as Deptcode is not present in the stage_chris21.PSDET table. Try the below code and see if...

  • RE: Is this allocation correct for the production environment?

    Could you be more specific about the exact message you're seeing?

  • RE: Could it be Tempdb corrupt ?

    Ah, yes. Forgot about that. You have to patch and enable the traceflag for the incorrect allocation page problem to go away.

    As for the XML, no idea. Have you checked...

Viewing 15 posts - 3,181 through 3,195 (of 49,571 total)