Forum Replies Created

Viewing 15 posts - 58,126 through 58,140 (of 59,066 total)

  • RE: collation settings

    Oh, yeah... almost forgot... you can get a list of available collations using the following code...

    SELECT *

    FROM ::fn_helpcollations()

  • RE: collation settings

    Yes...

    My recommendation (for U.S. installations) is to select a collation that is Dictionary Order, Case Insensitive (CI) and Accent Sensitive (AS).  This will normally be done during installtion of the server...

  • RE: SQL table - Adding secondary key question

    It's in Books Online under [Create Index] but here's a quick example for what you want to do...

    CREATE UNIQUE  NONCLUSTERED INDEX index_name

        ON tablename (columnlist)

  • RE: Columns added Or remove in a table

    No... you can query the SysObjects table directly although Microsoft recommends against doing that because they may change the table name (I believe they did in 2005).

  • RE: Distributed App SQL Help

    Make your code refer to a "linked server" and use a 4 part naming convention everywhere in your code.  Then, you can just repoint the linked server at whatever box...

  • RE: Importing and Exporting Data

    Sometimes, as in your case, you have to ask "Why" someone can't use the answer provided because they haven't explained themselves correctly... I imagine you get that alot

  • RE: Looping?

    If you don't know how many rows will be deleted, you can do something like this...

        SET ROWCOUNT 5000 
     SELECT 1 --"Primes" the rowcount so the loop works
      WHILE @@ROWCOUNT...
  • RE: Client cannot connect to SQL Server instance

    Shoot... I'm a little outside my league on this one... I'll tell you this, though... if you run this from a command prompt...

    OSQL -L

    ... and it doesn't list the server...

  • RE: Can''''t attach a database !!!

    Hadn't thought about that... if the DB was NOT properly detached, the procedure for recovery is quite long.  It's do-able, but ya gotta hold your mouth just right while you're...

  • RE: Anyone have ideas how to solve deadlock problems

    I've found that "UPDATE x WITH (ROWLOCK)" does very little in containing SQL Server's escalation of locks to rows instead of pages or extents.  It sure doesn't hurt to have...

  • RE: remove trailing zeros

    Yep... knew that about the conversion and SN... like others, I normally avoid float because of it's binary limitations on accuracy.  Because I avoid it, I didn't even think that...

  • RE: Importing and Exporting Data

    Why?  What's the problem with that method?  The "other user should not come to know"...

  • RE: Can''''t attach a database !!!

    Does the MDF or LDF have the "Read Only" attribute set?

  • RE: Importing and Exporting Data

    Without having to first script the table creation, this would work... very well, very fast, and without any interference...

    SELECT *
      INTO newtablename
      FROM oldtablename WITH (NOLOCK)

    The only thing it...

  • RE: Client cannot connect to SQL Server instance

    Paul,

    I haven't seen your connection string and you might want to take the time to post it (without a login name or password, of course!) but, if the name of the...

Viewing 15 posts - 58,126 through 58,140 (of 59,066 total)