Forum Replies Created

Viewing 15 posts - 5,131 through 5,145 (of 7,429 total)

  • RE: row fragmentation

    For B I am not sure that would be a yes. It depends on the columns affected. If there is no free space and the column from a clustered index...

  • RE: Desktop Edition

    Not sure but what message do you get when you try to install or does it just not give you the option? I have never had any issues with the...

  • RE: tables!!!

    Then for my previous message where I suggested having a newsletter to product mapping table add a country field should allow you to get that as well.

    "Don't roll your eyes...

  • RE: Auto Backup

    If you want to overwirte the previous backup then use.

    backup database <databasename>

    to disk = 'filename'

    WITH FORMAT

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

  • RE: Triggers

    You can write output to another table when trigger is fired as a means to know when or you can look for in Profiler in SQL items where you can...

  • RE: Creating an object with a different owner

    Not sure, but try. If not then you can reference the name of the user in the object creation to put under them.

    Ex.

    CREATE TABLE username.tblname

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

  • RE: Adressing Columns thru Index ?

    Don't think so. Can you give an example in detail of what you need so I am sure I didn't miss something here.

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

  • RE: SMALLDATETIME conversion problem

    Try just GETDATE() and see if it works. If so then your problem may be the fact you are trying to change the dateformat and it is not being recongnized....

  • RE: SQL7.0 Multiple users viewing jobs

    Best in my opinion is to create a Role ofor the msdb database and set it with SELECT rights on those 2 tables. Then you can add and remove users...

  • RE: Changing SQL Server Date format

    This is handled by the default language. Set the server and the users to British as that is the dateformat for British.

    From BOL how to set server default

  • RE: Provider cannot be found.

    Try reinstalling MDAC. If that does not work then reinstall the AS Manager.

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

  • RE: print in trigger

    Print does not work in triggers as it does not return to the user interface. To handle this look at using RAISERROR.

    Ex.

    Replace

    PRINT 'PRINT THIS'

    with

    RAISERROR ('Error Message', 11, -1)

    "Don't roll your...

  • RE: Transactions in stored procedure

    OK try this.

    --Change--

    Dim s As Integer

    Try

    s = objCommand.ExecuteNonQuery()

    Catch ex As SqlException

    OutError.InnerHtml = "Errore " & ex.Message & " " & ex.Source

    End Try

    --to--

    Dim s As Integer

    Try

    s = objCommand.ExecuteNonQuery()

    Catch ex As SqlException

    Dim...

  • RE: update query help needed ASAP

    Does sequence have more than one match between tabe1 and table 2. If so then you will only get one record unless another field has a match of some kind.

    "Don't...

  • RE: Transactions in stored procedure

    quote:


    IF @@transcount>0 COMMIT TRANS


    Is unneeded since we have reached the end of processing and thus...

Viewing 15 posts - 5,131 through 5,145 (of 7,429 total)