Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)

  • RE: Auto-Select Database Name

    You can always change your default database to one you use the most...

  • RE: Inserting multiple rows into a table

    USE Test

    GO

    INSERT INTO Practice

    select 'John', 'Jones', '99980', '45', 'Payson', 'Arizona'

    union all

    select 'Mary','Jones','99982','25','Payson','Arizona'

    union all

    select 'Eric','Edwards','88232','32','San Diego','California'

    Cheers,

    K

  • RE: Delete Not Exists Problem

    J,

    See if this does the trick...or maybe at least help you in the right direction, if I messed up the logic somewhere...

    Left joining to table B and then eliminating...

  • RE: Table relationship

    Another way is to:

    In management Studio...Right Click on the tablename...go to ViewDependencies.

    That should give you objects dependant on that table, and object that table depends on.

    K

  • RE: Correlated Subqueries

    If I understood you right...could you join to the same table a multiple times to get the different information...something like this...

    You would join to the Fees table on the client,...

  • RE: SSIS

    It seems from the error that it is still expecting that space in the name of the last column (there is a space in the error between the name and...

  • RE: SSIS

    If you are running your package in visiual studio, after you execute it, there should now be a "Execution Results" tab next to all the other tabs (Control flow, data...

  • RE: Table

    Do you have all the correct permissions on the table? You may be able to view it but not actually select from it...

  • RE: How can I mass alter multiple stored procedures?

    Could you just generate the 'Create' scripts, and then do a find replace of 'Create' with 'Alter'...

  • RE: Permission to Stored permission

    You can either add a SQL statement at the end of the Procedure to allow the user Exec Permissions.

    Grant EXECUTE ON [ProcName] TO [UserName];

    or

    in Management Studio, right click on...

  • RE: SSIS export of data to a fixed length flat file

    Seeing the Same issue...have been trying to figure out for a little while now...If somebody knows of a solution please respond.

Viewing 11 posts - 1 through 11 (of 11 total)