Forum Replies Created

Viewing 15 posts - 7,546 through 7,560 (of 49,552 total)

  • RE: how do i allow only specific ip address to connect to my sql server

    Luis Cazares (10/9/2014)


    I wasn't expecting that someone would expose their SQL instance to the internet. :crazy:

    I suspect that's the situation that the OP is in. 🙁

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how do i allow only specific ip address to connect to my sql server

    Luis Cazares (10/9/2014)


    If you can't do it the right way, you could try an alternative.

    Won't help here. Login triggers only fire if the login was successful, they're not going to...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Table Growing in Size but data/index does not support the size

    Is the table in question a heap? (no clustered index)

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Are the posted questions getting worse?

    Could someone who knows their way around firewalls please help this network admin out?

    http://www.sqlservercentral.com/Forums/Topic1624301-1550-1.aspx

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Possible to unCompress or deCompress compressed table and index in SQL 2008 R2?

    But you still lose the advantage of compressed pages in memory.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how do i allow only specific ip address to connect to my sql server

    Yes, still only three options for what to do with the connection, but on the scope page you set what IP addresses the rule applies to.

    Please, get someone who knows...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how do i allow only specific ip address to connect to my sql server

    Custom rule -> Scope

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Deadlock Question

    They're key locks. So the two processes each have an exclusive lock on a different row of the same index. Perfectly possible.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Possible to unCompress or deCompress compressed table and index in SQL 2008 R2?

    ALTER INDEX or ALTER TABLE with the rebuild clause.

    Dedupe on the data files? That's got to be a violation of the IO requirements SQL has (once written data is not...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how do i allow only specific ip address to connect to my sql server

    When I said speak to the network admin, I meant the person who knows their way around networking and firewalls.

    I am not a network admin, I don't know firewalls well,...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Query to check if indexes have been rebuilded

    I guess you could check sysjobs and see when the last time the index rebuild job ran. Other than that, there's no easy way to track when an index was...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how do i allow only specific ip address to connect to my sql server

    Speak to your network admin, denying all IPs but for a range is something all firewalls should be able to do.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: How to improve the performance of a update query which is taking 45 minutes (approx) to execute

    Table definitions, index definitions and execution plan please.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how do i allow only specific ip address to connect to my sql server

    That's something you'd configure within the firewall. Speak to your network admin or ISP's network people.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Transactions

    I prefer to put the COMMIT inside the try block, rather than outside where an IF is necessary

    So....

    BEGIN TRY

    BEGIN TRANSACTION;

    -- Generate a constraint violation...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 7,546 through 7,560 (of 49,552 total)