Forum Replies Created

Viewing 15 posts - 1 through 15 (of 85 total)

  • RE: Less Pay, More Convenience

    I've been telecommuting two days of each week with every other Friday off so it ends up being 1/2 time telecommuting. The experience has taught me quite a lot...

  • RE: Special Character Replacement

    Farrell,

    Thanks!  That seems to be working well.

    Steve

  • RE: Special Character Replacement

    Farrell,

    I should have posted my cleanup code.  As you can see I've tried your recommendation previously and still get hosed text.

     UPDATE @Main SET

      PN=REPLACE(PN, CHAR(44), '')  -- comma

     FROM @Main

     UPDATE @Main...

  • RE: deleting records from imported table

    Go into the table design using Enterprise Manager and set it.  Otherwise, create a new Access Project (with existing data) and use the Access front-end to do the same thing. ...

  • RE: deleting records from imported table

    Most likely when you brought the data into SQL Server it was without the primary keys.  You MUST have a primary key in SQL Server to edit data.  It is...

  • RE: Is there something like an UPSERT or a MERGE command in T-SQL?

    BUT, if you don't use a cursor and use the INSERT and UPDATE commands it will process hundreds of times faster.  The T-SQL shown doesn't and processes extremely fast.

  • RE: Is there something like an UPSERT or a MERGE command in T-SQL?

    Why not create your own UPSERT T-SQL stored procedure for your data?  It's simply the combination of an update and insert in a single stored procedure.

    CREATE PROCEDURE spUpsertWuc

    AS

     INSERT INTO tblWUC...

  • RE: From Access 2003 to SQL Server 2005

    It is not my intent to be in a mood, Michael, but merely to advise.  My comments were about Access and not Office interactivity.  You are correct about Office 2000...

  • RE: From Access 2003 to SQL Server 2005

    Somewhat less than a million if you consider that Access 2003 projects could use SQL Server 2005 so security it handled by SQL Server; performance then would also be SQL...

  • RE: selecting the every tenth record.

    Assuming you have an integer ID (Identity 1,1) use a MOD type operation.  If you don't have an ID IDENTITY(1,1) then create a temp table with one and insert your...

  • RE: Update query in table from same table

    I always alias all tables in multitable queries.  It tends to make the query much clearer and cleaner.

    update vv1 set vv1.mtht = vv2.mtht,

    vv1.mthtsp = vv2. mthtsp,

    vv1.mthtax = vv2.mthtax,

    vv1.mttva...

  • RE: Dumb question update query

    You haven't mentioned whether you  have a key in the TOEROK table and that you have SELECT, UPDATE permissions on the table.

  • RE: How to use Parameterised Query in sql server

    A parameterized query passes a value into the query.  The TSQL you have shown uses a variable embedded in the query; not really a parameterized query.  If you want to...

  • RE: Linked Server Error

    Yes, it is an Excel file.  I deleted it and recreated the Linked Server and modified permissions and am now able to select data from the server.

    EXEC sp_addlinkedserver

  • RE: Linked Server Error

    Yes I can expand to the tables.  The provider string is 'Excel 8.0; IMEX=1' and the product name is 'Jet 4.0'.  We have been using this successfully for months before...

Viewing 15 posts - 1 through 15 (of 85 total)