Forum Replies Created

Viewing 15 posts - 931 through 945 (of 2,486 total)

  • RE: DTS Executes but Scheduled Job Hangs!!

    Ok, this is a huge step forward to solving your problem.

    "Error:  -2147467259 (80004005); Provider Error:  5 (5)" is basically Access Denied. So the credentials being used to access the INGRES...

  • RE: Analyzer

    The format for the replaceable parameters in the templates is,

    < parameter name , datatype , example data or default value >

    The 'sysname' that is referred to in the templates is...

  • RE: For those who say cursors are evil

    You also don't have the overhead of maintaining the cursor data in memory.

     

  • RE: What is this _WA_Sys_tbl_59063A47 index

    These are statistics that are generated/used by the query optimiser when it's generating an execution plan. For what should be apparent reasons now, it is not a good idea to...

  • RE: DTS Executes but Scheduled Job Hangs!!

    Just because you can successfully execute the DTS package manually, don't rule out any security problems. DTS executes with the security credentials of the process that started it. So if...

  • RE: Returning package status to Access

    Lets try and get past why you would store the package in SQL Server, but not execute it in SQL Server. I mean that way you'd be able to take...

  • RE: Ensuring only one record selected

    Cool, thanks Chris always love ways to avoid triggers and such

     

  • RE: Ensuring only one record selected

    Only one record in the whole table can be set to 1, all other records must be 0.

    At present the field could be edited/updated via Query Analyzer, possibly in the...

  • RE: For those who say cursors are evil

    Sorry, I can't reproduce your results, I don't have any databases where the MS_Description property is used.

    Honestly, I can't recall using it in any of the databases I've worked on over the...

  • RE: BULK INSERT with fixed length text file

    I'd be inclined to say you'll have to pre-process the file and insert the row terminators. Something like running a short VBScript to insert CR+LF into the appropriate places. Once...

  • RE: debug too in SQL Analyzer

    In this case, the debugging won't work as you explain it. The statements in the procedure are not being executed, only the CREATE PROCEDURE statement is being executed.

     

  • RE: sIMPLE qUESTION

    The uppercase N at the start of a string signifies that the string is in unicode format.

    Most of the SQL Server object names, functions and stored procedures use unicode string...

  • RE: For those who say cursors are evil

    This sort of what you're looking for?

    Create table #tblDataDictionary (
        table_id [sql_variant]
        , table_name [sql_variant]
        , column_order [sql_variant]
        , column_name [sql_variant]
        , column_description [sql_variant]
    )
    INSERT INTO #tblDataDictionary
    SELECT
        o.[id] as...
  • RE: Restore Database From Network Drive

    Yes you can have SQL Server running under a plain user account, but to get proper functionality (SQL Agent, SQL Mail, registry access, etc...) you need to assign a few...

  • RE: Restore Database From Network Drive

    D$ is an admin only share so it won't work unles the user account in the Local Adminstrators group?

    Better solution is to share out the subfolder on server2. Then your restore...

Viewing 15 posts - 931 through 945 (of 2,486 total)