Forum Replies Created

Viewing 15 posts - 2,251 through 2,265 (of 2,904 total)

  • RE: ALTER TABLE problem!

    No I didn't.

     I checked the BOL and while there wasn't an exact example, it did infer that you could do several ALTER COLUMN that...

  • RE: ALTER TABLE problem!

    You can alter several columns at once:

    ALTER TABLE mytablename ALTER COLUMN mycolumnname1 INT,

    mycolumnname2 VARCHAR(2),

    etc....

    Check out ALTER TABLE in the BOL. Use the Index tab and enter ALTER TABLE.

    -SQLBill

    BOL=Books OnLine=Microsoft's SQL...

  • RE: ALTER TABLE problem!

    What are you trying to do?

    Do you have a table and are just trying to change the columns in the table?

    -SQLBill

  • RE: A view on two databases.

    Allen,

    The poster said the user DOESN'T have permissions on Table 2.

    "Nopermissions on 'table2', of course, cause user should not see the table"

    And that's the problem. SELECT has to be granted...

  • RE: Enterprise Manager Icon

    Each server (instance) has it's own service, so it's probably showing which ones are still running. There's a tool bar icon for the SQL Services also, and it shows the...

  • RE: transaction log not erasing files but full backup does

    You are probably appending the Transaction Log (TL) backups to the backup file. Correct?

    If so, here's what's happening:

    1st TL Backup @ 0100 => backup file time of 0100

    2nd TL Backup @...

  • RE: How to create an uneditable database ?

    Also, what is considered an EDIT? If I delete a record, usually that's considered editting it. If a database can't be editted, the DBA or anyone else will never be...

  • RE: Enterprise Manager Icon

    What SQL Server version do you have?

    Is the red squiggly line only on Server icons that you have expanded?

    -SQLBill

  • RE: A view on two databases.

    Found it!

    In the Books OnLine, use the Index tab and enter Create View, scroll down to permissions.

    According to the BOL, a View IS a Virtual Table. To EXECUTE a view, the user must...

  • RE: A view on two databases.

    I'll see if I can find the exact info in BOL, but the issue is that the user still needs permissions to the table.

    The view just lets the user see...

  • RE: Reference materials suggestions needed

    It depends on what your database really is. You say it's Access, well then Microsoft SQL Server tutorials won't help.

    If you really are going to use MS SQL Server, you...

  • RE: Login failed for user \.

    Is this a typo?

    DECLARE @Name

    Or did you actually declare @Name as some datatype (ie. VARCHAR(20))?

    -SQLBill

  • RE: Tigger on inserts

    Okay. Now what's your question?

    -SQLBill

  • RE: Changing Multiple Databases Ownership to SA

    The new 'look' doesn't allow me to properly format this, so bear with me. There's an 'undocumented' procedure called sp_msforeachdb which allows you to execute upto three commands for...

  • RE: Question of the Day for 28 Jan 2004

    So much for trying to BOLD parts of my message. The parts between and should have been bolded for emphasis. Oh well....

Viewing 15 posts - 2,251 through 2,265 (of 2,904 total)