Forum Replies Created

Viewing 15 posts - 4,591 through 4,605 (of 8,416 total)

  • RE: Speed difference with or without FK

    PaulB-TheOneAndOnly (3/30/2010)


    As far as I know - in the SQL Server world - there is no performance difference during a select statement; please note the predicate of the query is...

  • RE: Compress or NOT to Compress data before loading data

    Definitely compress first. Minimally-logged bulk insert into a compressed table (heap or clustered) is supported.

    Inserting compressed data will be much faster than inserting the (presumably much larger) uncompressed data...

  • RE: Are the posted questions getting worse?

    CirquedeSQLeil (3/30/2010)


    tosscrosby (3/30/2010)


    Paul White NZ (3/30/2010)


    WayneS (3/30/2010)


    Fellow Threadizens, if I can get you to check out this link about a sql login permission issue that I'm having, I...

  • RE: Resource Governor

    Revenant (3/30/2010)


    Well, the question is incorrect, anyway - RG is also available in the Evaluation Edition. So that "only" without this version mentioned is IMO misleading.

    Not all that misleading...

  • RE: Are the posted questions getting worse?

    WayneS (3/30/2010)


    Fellow Threadizens, if I can get you to check out this link about a sql login permission issue that I'm having, I would really appreciate it!

    You should have marked...

  • RE: Multi-statement execution

    Peter Trast (3/30/2010)


    Paul White NZ (3/30/2010)


    This question made my head hurt.

    Isn't that normal?

    I suppose it is - though for varying reasons. This one was good in that it was...

  • RE: TRUNCATE

    Peter Trast (3/30/2010)


    Impeccable logic Paul 😉

    Given the bird theme, I suppose it should be im-peck-able logic really 😀

    (sorry)

  • RE: View definition permission issue

    Last thought:

    Check out the super-handy function and examples:

    Covering/Implied Permissions (Books Online)

    That will show you all implied permissions at any level.

    edit: Oh, and check that the database with Modify disabled...

  • RE: View definition permission issue

    ...and if you want a guess, I would say that the VIEW ANY DEFINITION is inherited from the ADMINISTER BULK OPERATIONS permission, since bulk insert requires checking the definition of...

  • RE: SSMS - feature

    Dietmar Weickert (3/30/2010)


    Still you must be lucky to get the same behavior as bitbucket.

    Not sure really - I have just used this feature before, so recognised it in the question.

    That...

  • RE: Query cost

    Hugo Kornelis (3/30/2010)


    If there's one thing I've learned over the past years, it is to take everything that comes from Itzik VERY seriously! 😉

    Agreed. He has a tricky habit...

  • RE: SSMS - feature

    Dietmar Weickert (3/30/2010)


    Does not work as described.

    Personally I do not like questions where the correctness of your answer changes with your luck.

    Read the other posts here.

  • RE: View definition permission issue

    You are just checking server-level (login) permissions.

    Write a similar query to check the database-level (user) permissions.

    Use sys.database_permissions and sys.database_principals

    select perm.*

    from sys.database_permissions perm

    ...

  • RE: Query cost

    Hugo Kornelis (3/30/2010)


    I was not able to find any way to get the SELECT * to behave other than the SELECT 1

    Me either! I tried indexes, scalar functions, XML...

  • RE: Query cost

    Hugo Kornelis (3/30/2010)


    As far as I know, that was once the case. In SQL Server 7.0 or so.

    It's still in Itzik's Inside SQL Server 2008 T-SQL Querying book 🙂

    Do you...

Viewing 15 posts - 4,591 through 4,605 (of 8,416 total)