Tag: syndicated

  • Fun with SQLskills

    I’m in a fun mood today, so a few silly items for you.

    The last few weeks, Paul Randal (blog | @PaulRandal) of SQLskills has been doing a quiz on Twitter some days. He’s asked some rather difficult questions on Twitter, and people have had fun following along. I decided to get in on the fun today with a few questions of my own as a “pre-test” to his quiz.

    Question 1: Which of these glasses does Kimberly Tripp (blog | @KimberlyLTripp) prefer?

    fun3

    Question 2: What is this and is how does it relate to Paul Randal?

    fun2

    Question 3: Will it fit?

    fun1

    I’m having fun today, as you can see

    fun4

    In case you really want the answers:

    A1: none of them; they’re all empty!

    A2: It’s a kilt, which is a skirt for boys from Scotland. That’s where Paul was born.

    A3: I’ll let you know after this evening Winking smile

  • How To Make Your Laptop 100x Faster

    Simon Sabin had his own take on increasing laptop speed. He had some good ideas, but he inspired me to try to top his suggestions. Here’s what I came up with:

    speed

    Anyone needing help, let me know. I can swing by.

  • Checking Permissions

    Someone posted this query recently:

    select a.*,name, b.* from sys.database_principals a, sys.database_permissions b
    
    where permission_name = 'INSERT' and b.grantee_principal_id = a.principal_id

    That’s a little ugly, so let’s fix it:

    SELECT  a.name, a.principal_id, a.is_fixed_role
          , a.default_schema_name
          , b.permission_name, b.permission_name
          , b.state_desc
     FROM sys.database_principals a
      INNER JOIN sys.database_permissions b
      ON b.grantee_principal_id = a.principal_id
    WHERE permission_name = 'INSERT' 

    If you run this, you’ll get INSERT permissions in your database. In this case, the person had one row returned that had “public” in it, as shown.

    results1

    I normally don’t have permissions for public, but in this case I had run this first:

    GRANT INSERT ON Person.Address TO Public

    I don’t recommend permissions for public, and you really ought to run this on all your servers:

    SELECT a.name, a.principal_id, a.is_fixed_role
          , a.default_schema_name
          , b.permission_name, b.permission_name
          , b.state_desc
     FROM sys.database_principals a
      INNER JOIN sys.database_permissions b
      ON b.grantee_principal_id = a.principal_id
    WHERE a.name = 'public' AND major_id > 0

    How do you find out which objects have permissions? There’s a clue in the last query. If you scroll across in the results, there’s a major_id column. You can use that to find the object.

    results2

    The OBJECT_NAME function is handy here, and it takes an object_id, which is the major_id. If I run this:

    SELECT OBJECT_NAME(85575343)

    I get “Address” back, which is the object I altered.

    And, of course, we need to clean up

    REVOKE INSERT ON Person.Address TO Public 
  • Colorado SQL Server User Groups – May

    I saw a post from Marc Beacom on the presentations this week for various groups. You can get the info on them all from Marc’s post, but basically this is user group week in CO.

    • Tuesday – Boulder
    • Wednesday – Colorado Springs
    • Thursday – Denver

    I’m not sure I’ll be at Denver on Thursday. I’d like to go, but I’m having a busy week. I definitely can’t make the other two with my wife out of town this week.

    In terms of the presentations, I haven’t seen Mike Fal (Boulder) talk before, but permissions can be a little hairy and this could be a good session. I do like Tom Norman, and he works in the payment/credit card industry, so I am sure that his Encryption talk on Wed will be good. Thur I’d like to see Jason Horner do the short spatial piece since it’s an interesting topic and I’ve been bothering Jason to talk for a few years. Glenn Berry’s Hardware talk is a good one, especially for people that don’t track that stuff. It’s all just “stuff to me” and Glenn is the person I tend to ask for advice if I’m looking for new hardware. Worth going to see.

    Enjoy the SQL week in CO, and if you would like to come speak, give a ring. You can do a one week tour, hitting all three group sometime and we’ll line up some hosts to ensure you have fun. If you want to come ski from Nov-Apr, I’ve love to have you.