Forum Replies Created

Viewing 15 posts - 841 through 855 (of 1,186 total)

  • RE: Temporary table

    An easier solution would be to create a STAGING type table import your EXCEL data into that "real" table and then grab the data you want out of it.

    OR

    You could...

  • RE: Remote Procedure Call

    I would get with the people that manage that server and ensure that the ports, permissions, etc..  are set-up to allow the xp_loginconfig to run.  I would also make sure...

  • RE: StoredProcedures or Userdefined function.

    Have you tried the following:

     

    SELECT dbo.udf_FunctionNameHere ??  Also some require () at the end..

  • RE: Temporary table

    If you are trying to directly reference the #table it will not work.  You will have to do the code inside a stored procedure.  The problem is the system looks...

  • RE: Query Problem

    Assuming that the roles are supposed to be 2, 10, 13, 16...  Have you checked to ensure that the roles you are expecting are not being weeded out by the...

  • RE: Move SQL 2000 DB to SQL 7

    Change the compatibility level of the DB to 7.0 (SQL 7).  You should then be able to generate the code scripts required to rebuild the database on your other server...

  • RE: SQL to convert UTC date to datetime

    IF you are using standard field storage for UTC then the below should work.  Please note that this code will return Greenwich Mean time (Zulu time for you pilots...)

     

    -- 1994-11-05T08:15:30-05:00

    --...

  • RE: Loop Help

    rockmoose,

    Your guess is as good as mine...  I do all my code in QA, other places than paste...

  • RE: You cant carry out this action at the present time

    1st thing I would try is close out ALL Access databases, applications etc..  and re-open.

    You may have to attempt a re-start as well.  If you are getting this on Zoom...

  • RE: Loop Help

    This code might help you get close to what you want.  All you will need to do is INSERT new line after every account is done

    DECLARE @iCnt INTEGER

    DECLARE @Loop INTEGER

    DECLARE...

  • RE: sp_addlinkedserver and Excel

    John,

    Have you tried drilling down through EM to "see" what tables exist??

    You should be able to see Sheet1$, Test$ etc.

    and refer to it as test...Sheet1$

  • RE: USING A DYNAMIC VARIABLE

    How bout

    DECLARE @employee_id

    SET @employee_id = (SELECT employee_id FROM ##employee WHERE code = 'AA')

    SELECT * FROM table1 WHERE fieldx = @employee_id

  • RE: DTS --> Global Variables of type DATE

    Ok, this is what I would try,

    1. change the fields that you are thinking are bombing due to DATE to CHAR where you know the code works when you run...
  • RE: Question of the Day for 25 Aug 2004

    Steve,

    I have full faith in you and this site.  I have been around for a little while with you.  I have e-mails from Oct 2002 which is unfortunate because...

Viewing 15 posts - 841 through 855 (of 1,186 total)