Forum Replies Created

Viewing 15 posts - 46 through 60 (of 360 total)

  • RE: Query oddity

    Example 1:

    When you use a SELECT statement in an INSERT the two tables must have compatible structures. If all of the columns are compatible in the same order that they...

    Quand on parle du loup, on en voit la queue

  • RE: Good Book for SQL Developer

    For the basics:

    Practical SQL by Bowman

    Advanced:

    The Guru's Guide to Transact-SQL by Ken Henderson is always open on my desk.

    SQL For Smarties by Joe Celko

    Database Design is another issue. I...

    Quand on parle du loup, on en voit la queue

  • RE: Data Modeling software, What is best?

    I have used Embarcadero ER/Studio in several locations for years. It is very good. I have used ERwin once, but was not impressed.

    Quand on parle du loup, on en voit la queue

  • RE: Text to NVarChar

    From BOL (ALTER TABLE)

    The altered column cannot be:

    A column with a text, image, ntext, or timestamp data type.

    You should consider copying the data to a temp table, dropping and...

    Quand on parle du loup, on en voit la queue

  • RE: nchar vis nvarchar

    I agree with Frank -

    Do not switch back and forth between Unicode and ANSI. You may find yourself losing data if, for example, someone has more than 4,000 characters...

    Quand on parle du loup, on en voit la queue

  • RE: Single or Mutlible tables?

    There are some very good articles here and elsewhere about why you should not create monolithic tables - 'Lookup Table Madness' from Sept comes to mind. There are also some...

    Quand on parle du loup, on en voit la queue

  • RE: nchar vis nvarchar

    A row with variable-length columns requires special offset entries in order to be internally maintained. These entries keep track of the actual length of the column. Calculating and maintaining the...

    Quand on parle du loup, on en voit la queue

  • RE: Hector Silva Carmona

    You might try ApexSQLEdit. You can find free copies of it on the Net - there are nag screens but they can be ignored.

    Quand on parle du loup, on en voit la queue

  • RE: Cannot find the function xp_cmdshell in the library...

    From BOL:

    When xp_cmdshell is invoked by a user who is a member of the sysadmin fixed server role, xp_cmdshell will be executed under the security context in which the SQL...

    Quand on parle du loup, on en voit la queue

  • RE: Creating Non Cluster Index on Primary Key

    http://www.microsoft.com/sql/techinfo/productdoc/2000/books.asp

    This should help.

    Quand on parle du loup, on en voit la queue

  • RE: Mandatory photo at 1,000 posts?

    Laughing. I am soooo glad I have 600+ posts before I have to worry about finding a photo that doesn't stop a clock.

    Quand on parle du loup, on en voit la queue

  • RE: SQL syntax GROUP BY or something like that

    We have a "dumb" report writer system. It requires inner joins for everything. For a group of users I had to create crosstab tables. Do a search on pivot tables...

    Quand on parle du loup, on en voit la queue

  • RE: Executing fn_trace_getinfo as non system administrator

    Sorry, but in SQL2000 you have to be a sysadmin to run trace procs.

    This is a change from SQL7 where you could grant exec on the extended

    stored procedures

    Quand on parle du loup, on en voit la queue

  • RE: Primary Key and duplicate values

    Be aware that you are violating one of the basics of relational tables - a key is a value or a combination of values that is unique for every row....

    Quand on parle du loup, on en voit la queue

  • RE: Removing Cascade Deletes

    Oh, jumped the question. Yes, you will have to redo the foreign keys.

    Quand on parle du loup, on en voit la queue

Viewing 15 posts - 46 through 60 (of 360 total)