Forum Replies Created

Viewing 15 posts - 3,601 through 3,615 (of 6,104 total)

  • RE: Updating a Counter

    If you know the format is always going to be -, yes, you can do it in a set-based way. You could do something along the lines of:

    WHERE MyNumber =...

    K. Brian Kelley
    @kbriankelley

  • RE: msde and svrnetcn

    Installing it as a named instance shouldn't have mattered too much, but it does sound like something went flaky with the install somewhere. Can you connect via named pipes? Especially...

    K. Brian Kelley
    @kbriankelley

  • RE: Database security - user access

    db_datawriter gives INSERT, UPDATE, DELETE implicitly on all tables and views.

    db_datareader gives SELECT implicitly on all tables and views.

    You may want to go back and check those other servers because...

    K. Brian Kelley
    @kbriankelley

  • RE: Determining SQL statements involved in deadlock

    The "text" on how to solve blocking problems... be aware there is a lot of data collected.

    http://support.microsoft.com/default.aspx?scid=kb;EN-US;224453

    K. Brian Kelley
    @kbriankelley

  • RE: msde and svrnetcn

    So you're at a command prompt, sitting in the directory, run the program and a command window flashes and is gone. Very, very odd.

    As a simple test you can...

    K. Brian Kelley
    @kbriankelley

  • RE: function in SQL to identify whitespace

    Take a look at CHARINDEX(). It can be used for just about any character or stream of characters.

    K. Brian Kelley
    @kbriankelley

  • RE: msde and svrnetcn

    What if you navigate to the directory where svrnetcn is located and run it again? Anything?

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server agent Event ID 208...

    You can change the owner of the job in SQL Server Agent. That's what racosta is referring to. In EM >> Expand the server >> Expand Management >> Expand SQL...

    K. Brian Kelley
    @kbriankelley

  • RE: msde and svrnetcn

    Anything in the application event log?

    K. Brian Kelley
    @kbriankelley

  • RE: Trusted (MLS) SQL Server?

    Out of the box, no, SQL Server doesn't have the trusted concept. You can, however, build one using row-based security models.

    SQL Server MVP Vyas Kondreddi has written up a...

    K. Brian Kelley
    @kbriankelley

  • RE: msde and svrnetcn

    What happens if you drop down to a command prompt and run it from there? Does it show an error?

    K. Brian Kelley
    @kbriankelley

  • RE: Error connection to MSDE

    Find out what TCP port it is listening on and see if you can connect to it by directly referencing the port.

    K. Brian Kelley
    @kbriankelley

  • RE: Database security - user access

    Windows user or SQL Server user? Verify using say Profiler the user is indeed the one you've assigned permissions to. Also be sure to log off all connections with said...

    K. Brian Kelley
    @kbriankelley

  • RE: Slow connection on sqlsever local, but remote is fine

    Also keep in mind most servers are set to prioritize background services over applications. You can check by right-clicking on My Computer and choosing Properties | Advanced tab | Performance...

    K. Brian Kelley
    @kbriankelley

  • RE: how can a user see Jobs without sa permissions

    Just keep in mind this is undocumented and subject to change. For instance, permissions this role had were changed with SP3. So if you make use of it, test in...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 3,601 through 3,615 (of 6,104 total)