Forum Replies Created

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

  • RE: Keeping QA in sync with Production

    Hi,

    Keeping QA in sync with Production may help the testers but becomes a problem for dba's. We had a daily job to restore prod backups on QA for the same...

  • RE: Changing User ID

    George,

    Glad I could help 🙂 I think only admin/moderator can close this topic.

    BR,

    avm

  • RE: Changing User ID

    Hi George,

    Do you have SQL Server Management Studio Express installed on the computer? If yes, then log back in as the other user, open management studio, connect to the database,...

  • RE: varchar(MAX) or nvarchar(MAX) not satisfying my requirement

    You will need to explicitly cast the variable as (n)varchar(max)

    for example

    declare @STR varchar(max)

    select @STR = replicate('a', 9001)

    select len(@str) --returns 8000

    select @STR = replicate(cast('a' as...

  • RE: The Brainstorm Zone

    In one of my past projects, I worked in a database team of 7 developers and we would compete with each other to come up with a solution. This usually...

  • RE: approle

    Well, it's not much easier, if at all. And it certainly is not nearly as good, because AppRoles make it possible to easily combine accessibility checks for both the...

  • RE: approle

    Alvin Ramard (8/19/2008)


    avamin (8/19/2008)


    rbarry: To clarify, I suggested creating a single windows user that only the app will use to talk to database. Sorry if my earlier post was not...

  • RE: approle

    rbarry: To clarify, I suggested creating a single windows user that only the app will use to talk to database. Sorry if my earlier post was not clear.

  • RE: approle

    I haven't used approles so cannot give you any info on that

    But to ensure users can access database only through the app, you can limit the permissions of the user...

  • RE: sp_spaceused

    CREATE TABLE #test(

    [name] varchar(100),

    rows int,

    reserved varchar(100),

    ...

  • RE: General Design - involving FK fields

    you can create composite primary keys such as

    EmployeeMaster - CompanyID, EmployeeMasterID

    PayCode - CompanyID, PayCodeID

    EarningsMiscWrk - CompanyID, EmployeeMasterID, PayCodeID

    Foriegn keys can be created on this table on

    CompanyID, PayCodeId refer...

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