Forum Replies Created

Viewing 15 posts - 601 through 615 (of 790 total)

  • RE: BCP -line feed row terminator

    In the past when neither "\r" nor "\n" has worked for me, a combination of "\r\n" has done the trick.

  • RE: Missing Database Maintenance Plan Icon

    Thats strange. I was going to suggest that you don't have privileges, but if that were the case then you wouldn't be able to use the MP wizard. ...

  • RE: date function

    There's plenty of help available in this forum. What do you want the function to do? Can the "quarter" option in the DATEPART function help at all?

  • RE: Complicated Query

    Can you post an example of the output required? (heading + 1 or 2 lines)

  • RE: Backup Failure

    What is "CCA_Bat"? The backup file or device? Is it overwritten or appended to? Is there enough space in the drive? Does the failure occur for...

  • RE: QOD Cheats

    Well, There is cheating and there is cheating.

    One can either: A) answer the question based on current knowledge B) actually test out the alternatives in the question and/or...

  • RE: A SELECT question

    Maybe something like...

    
    
    SELECT TOP 1 *
    FROM MyTable
    WHERE ID = @ID
    ORDER BY CASE WHEN...
  • RE: Triggers: determine name of updated column

    I'm not real big on bitmasks myself, so here's something I've hacked together. Undoubtedly someone could do better, but it's a start.

    DROP TABLE MyAudit
    
    GO
    CREATE...
  • RE: Triggers: determine name of updated column

    If you use the value of the trigger's bitmask variable (function) COLUMNS_UPDATED(), then you should be able to analyse that bitstring, joining with syscolumns or information schema views to determine...

  • RE: Triggers: determine name of updated column

    If you use the value of the trigger's bitmask variable (function) COLUMNS_UPDATED(), then you should be able to analyse that bitstring, joining with syscolumns or information schema views to determine...

  • RE: SP3 Install Error

    It may be that another local process is jumping in first in single user mode.

    Your error message has a high hit rate in Google Groups (http://groups.google.com/). Search on...

  • RE: SQL SERVER running together WITH ORACLE

    Driver conflicts were related to ODBC. I can't remember the specifics but they eventually arose after messing around with Oracle retrieval from SQL Server and then Oracle insert/update from...

  • RE: SQL SERVER running together WITH ORACLE

    My recommendation is to separate the two. I don't like running ANYTHING alongside SQL Server on a production server, except unavoidable things like MS Search for FT indexing. ...

  • RE: Update Table using field from another table

     UPDATE TableA
    
    SET id = TableB.id
    FROM TableA
    INNER JOIN TableB ON TableA.xCode = TableB.xCode
    WHERE TableA.id IS NULL OR TableA.id = ''
  • RE: Simple Enough..

    I think you're going over the top by choosing a stored procedure for this task. To acheive what you're trying to do within a procedure you'll need to use...

Viewing 15 posts - 601 through 615 (of 790 total)