Forum Replies Created

Viewing 15 posts - 1,531 through 1,545 (of 6,104 total)

  • RE: Changing Logins DOMAIN for Users

    It should be;

    SELECT 'EXEC sp_grantlogin [' + REPLACE(name, 'old domain ', 'new domain') + ']'

    FROM syslogins

    where isntname = 1

    AND name LIKE 'old domain%'

    I tried to use tags and...

    K. Brian Kelley
    @kbriankelley

  • RE: Changing Logins DOMAIN for Users

    He's talking about matching up SIDs domain-to-domain, not at the SQL Server level.

    As to how to get the logins switched over, step 1, backup your master database. From there...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 2005 v MySQL

    No offense, but I think Google and LiveJournal would disagree with you on whether or not MySQL is a real database platform. I remember when LiveJournal recovered from database crashes...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 2005 v MySQL

    I'll give the standard answer: it really depends on the position.

    With that said, there are inherent differences between the two RDBMSes. Some of your knowledge from SQL Server is...

    K. Brian Kelley
    @kbriankelley

  • RE: Cluster issue

    The fact that there is a mismatch is worrisome. It means the service pack applied correctly to one side but not the other. With these kinds of issues, your better...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server Management Studio for the masses

    Bob Fazio (10/26/2007)


    End Users should not have access to direct SQL. PERIOD! If it is a reporting system some visual tool yes, but not SSMS.

    Right there...

    K. Brian Kelley
    @kbriankelley

  • RE: Successful DBA

    Matt Miller (10/26/2007)


    In other words - be careful that a short term "opportunity" doesn't turn into a long-term S***ing opportunity of you by the organization....

    True, but once a person has...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server Service Startup Slow - Delayed on Resource Manager Creation

    Probably best then to open up a case with support. If it's a legitimate bug, you shouldn't be charged.

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server Service Startup Slow - Delayed on Resource Manager Creation

    It appears to have to do with SQL Server registering with MS DTC. However, the cases I've found where Microsoft has documented it has to do with fail-over clusters where...

    K. Brian Kelley
    @kbriankelley

  • RE: Perfmon - SQL Server:Locks counters grayed out

    Sounds like a problem registering the counters. Is there anything in the application event log indicating an issue with the counters in question?

    K. Brian Kelley
    @kbriankelley

  • RE: How to access Remote server reports in SSRS 2005

    You can use the ReportViewer control. See the following topic in Books Online:

    Integrating Reporting Services Using the ReportViewer Controls

    K. Brian Kelley
    @kbriankelley

  • RE: Database Design

    Michael Hotek (former SQL Server MVP) wrote an article about naming conventions on his site. Many moons ago we applied it to our organization (it was written in the SQL...

    K. Brian Kelley
    @kbriankelley

  • RE: customizing object explorer detail pane?

    I'm not aware of any way of customizing that interface. However, if you're running SSMS w/ SP2 applied, you do have the option of building custom reports. Therefore, you should...

    K. Brian Kelley
    @kbriankelley

  • RE: Compiling stored procedures

    SQL Server only compiles/recompiles stored procedures during their execution. Therefore, it needs to be able to resolve the objects at that time. Or I may be completely misunderstanding your question....

    K. Brian Kelley
    @kbriankelley

  • RE: batch file for non sql user

    The solution Ramesh suggests, to use one of the SQL Server command-line clients, is the one I'd go with. Because it's command-line, you can put in a batch, meaning you...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 1,531 through 1,545 (of 6,104 total)