Forum Replies Created

Viewing 15 posts - 106 through 120 (of 279 total)

  • RE: Weird problem.. with server name

    Have you checked if you have more than one instance of SQL installed? Also, are both IP's on the same server or different ones?

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Quick Question. Could be silly

    Not sure if product codes would be unique for same product installs on different servers... although reading a value from registry sounds interesting as well...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Quick Question. Could be silly

    If you assume that you will not have 2 SQL server instances with the same servername, you could maybe use either the checksum or hasbytes function applied to the servername...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Weird problem.. with server name

    Did you recently change the actual servername (on the server, Windows)?

    How did you come up trying to connect with the -be extension?

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: SQL 2005 Maximum Datafile size error - database has space!

    I was going to mention something similar. Messages above 50,000 are custom messages added to sys.messages manually (via the sp_addmessage)

    There must be some custom process running that gives that message.

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Looking for Ideas on Monitoring Changes in SQL Server Permissions

    ...and besides that you can also implement DDL Audit solutions.

    See here and here for references

    I have seen this implemented as Triggers at DB level and saving...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Column unsage in a DB

    Besides a script, you can use the excellent SQL Search Tool from RedGate (It's Free 🙂 )

    Other than that, you can use this simple query:

    SELECT

    ROUTINE_NAME,

    ROUTINE_DEFINITION

    FROM...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Granting access to a view that is a view of a different database

    You might want to give this article a read.

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: indexing online vs offline, and setting a database offline

    Ali,

    If I run this for example on a table that has a LOB:

    ALTER INDEX [TheIndexName] ON [PROD].dbo.[TheTableName]

    REBUILD WITH (SORT_IN_TEMPDB = ON,ONLINE = ON)

    In this case TheIndexName...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: indexing online vs offline, and setting a database offline

    Alli,

    the script you mention should be erroring out on those tables that have LOB. We use a similar script and those tables are just "ignored" on our ONLINE...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: indexing online vs offline, and setting a database offline

    If it is an 24x7 operation and there are LOB's, you are out of look doing them online. You will need to schedule downtime to reorganize/reindex those tables.

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Server Migration

    As other mention above, the connectivity to the new IP address is your biggest worry, and this of course includes the DNS records if not in an AD for internal...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: Database Size

    And once again, another flawed simple question is busted by lack of attention on how the question is formulated:

    a) No SQL version supplied

    b) No indication whether it is an unaltered...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: indexing online vs offline, and setting a database offline

    Jeff Moden (1/19/2010)


    And just so you know, rebuilding indexes using the "Online" option is only an option in the Enterprise and Developer's (Enterprise with very limited licensing) Editions.

    ..... and in...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

  • RE: What Node am I on?

    Matt, I see what you mean now.... it is related to the SSRS Instance, not the SQL instance what you are talking about. My bad..... I guess it would require...

    _______________________________________________________________________
    For better assistance in answering your questions, click here[/url]

Viewing 15 posts - 106 through 120 (of 279 total)