Forum Replies Created

Viewing 15 posts - 7,081 through 7,095 (of 7,429 total)

  • RE: DTS package will not run as a job.

    Delete the job and resetup and see if it clears and make sure if this is a SQL 7 server you are not using the 2000 client to generate the...

  • RE: Quality of web-based training

    I have tried several packages and don't have any names with me but I am always leary of anyone who states Whatever of the year and check to make sure...

  • RE: Two potential subqueries for one result column

    Great to hear. If you need I can do a break down explanation, just let me know. If not then look at subqueries, joins and case for TSQL as that...

  • RE: ADO/T-SQL - Using the IN operator in a DELETE

    The problem with in passing a variable in is that when it translates it will be this

    IN ('0,1,2') and not the IN (0,1,2) that you need.

    In this case you...

  • RE: MULTIPLE ORDER BY in a stored procedure.

    I have tried and found no way to do order direction as of yet. You may if the code is short just double the code with an option for ASC...

  • RE: Security

    It is entirely up to you, just make sure that you have a way in in case of an emergency if you choose to disable access. Also note that you...

  • RE: default standard login question

    Where do you see this?

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

  • RE: Is 0% Downtime Possible?

    We mostly measure downtime in our area as times when due to unavailability business processes are impacted. For instance a database about inventory only needs to be availble between 8...

  • RE: sp to query linkedserver (Access)

    Don't feel bad, none of us caught that either and I had BOL open at the time.

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

  • RE: Restore to a Different Server Error

    If you restore a database with published tables to another server you should always get "The database is not published." error as it is just letting you know that it...

  • RE: sp to query linkedserver (Access)

    Also what does you PROCEDURE code look like.

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

  • RE: create or replace

    Easiest you will be able to do is drop like you have then just create, not worrying about what it is like.

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

  • RE: last day of the month

    Note: I only do the convert at the end in case you are submitting a value with Date and time.

    SELECT DATEADD(mm,1,DATEADD(d,-DATEPART(dd,'1/5/2002'), CONVERT(VARCHAR,'1/5/2002',101)))

    As far as search, not 100% sure you would...

  • RE: sp to query linkedserver (Access)

    Try copying the Procedure out and pasting into Query Analyzer and make your changes there. Then change CREATE PROCEDURE to ALTER PROCEDURE and run, then go check.

    "Don't roll your eyes...

  • RE: Restore SQL6.5 db backup to SQL2000 db

    Glad you found what you needed.

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

Viewing 15 posts - 7,081 through 7,095 (of 7,429 total)