Forum Replies Created

Viewing 15 posts - 5,371 through 5,385 (of 7,429 total)

  • RE: rigths

    Form GRANT in SQL BOL

    quote:


    Members of the db_owner or db_securityadmin roles can grant any permissions on any statement or object in...

  • RE: xp-sendmail to send HTML text

    Sorry no paramter to set the mime type in xp_sendmail.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Revoke All with T-SQL

    Are you saying you want to setup the ROLE with REVOKE on all items, if so that is the default.

    If for accounts and other roles then you will use

    REVOKE ALL...

  • RE: problems using a linkserver in SP

    Take a look here http://support.microsoft.com/search/preview.aspx?scid=kb;en-us;Q270119

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Timer fuction?

    Then you will need to add a third column for last change. Then either submit a GETDATE() value into it or create a trigger to update the value when a...

  • RE: Rows deleted automatically?!?!?!

    If you query the load in the middle of the process the records may be available to query but if an error occurrs it will rollback the changes, if after...

  • RE: Encrypting Columns

    Actually if you concern is the encryption of sensitive data the point is to do a one way encryption this means the original data should be required to confirm it....

  • RE: Microsoft Access (JET) Link

    Unfortunately this is a known issue and MS does not plan a change. There reasoning was that this was not intended to be done this way.

    "Don't roll your eyes at...

  • RE: retrieving NULL values with 'XYZ' in clauses

    != means not equal, NULL is not equal in comparison thus

    Col != 'XYZ' will look for anything that does not equal 'XYZ'.

    "Don't roll your eyes at me. I will...

  • RE: SQL Server Hardware

    Don't know about the 1GB NIC unless your network will support and the backbone can run at that speed. I would aim for as much ram as you can possibly...

  • RE: PReformance monitor

    My bad, thanks Meg for picking up the ball.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Binary & image columns and unused space

    There is no need to do DBREINDEX on tempDb but I use it on all others (model can also be skipped). And yes I use DBCC UPDATEUSAGE after the reindex...

  • RE: update statistic, dbcc dbreindex, ....

    DBCC DBREINDEX is the same thing as dropping and recreating the indexes except it does all on a single table at one time and you do not have to know...

  • RE: Randomic Record

    There is RAND but not a very good random number. You question is a little confusing to know what you want.

    "Don't roll your eyes at me. I will tape them...

  • RE: retrieving NULL values with 'XYZ' in clauses

    Actually should be

    ((Col <> 'XYZ' ) OR (Col IS NULL)) so it can

    be either situation or

    COL != 'XYZ'

    does the same.

    "Don't roll your eyes at me. I will...

Viewing 15 posts - 5,371 through 5,385 (of 7,429 total)