Forum Replies Created

Viewing 15 posts - 76 through 90 (of 654 total)

  • RE: Using DTS to Create Reports in Crystal 11

    or you could look at instantiating the crystal reports dll in your dts script

    might be easier though to create a .net app that does the printing and then you can...

  • RE: SQL Function Prob

    or for SELECT @result = @result + @Match

    try

    SELECT @result = isnull(@result,'') + isnull(@Match,'')

  • RE: SQL Function Prob

    if you have a null value in homeTeam.Name or awayTeam.Name the soln will be null try using

    isnull(homeTeam.Name,'') + ' v ' + isnull(awayTeam.Name ,'')

  • RE: Using DTS to Create Reports in Crystal 11

    i have never tried what you ask for

    but to partly answer your question, if you have Business Objects Server you can use the scheduling function there to produce the reports.

    another...

  • RE: T-SQL question

    update [main table]

    set somecolumn = someCalculations

    From [main table] A inner join

    (select id, someLargeTableCalculations

    from [LargeTable]

    ) B on A.someid = B.id

    as has been said already post your code if you need a...

  • RE: INSERT Identity

    is it possible for you to tell us what this column does?

  • RE: INSERT Identity

    in that case I would propose you use a trigger on insert or update on the table, checking if the inserted value is null

  • RE: INSERT Identity

    in what circumstances

    (the field may in other circumstances have a valiue other than the identity.)

    you can use an expression on the column

  • RE: INSERT Identity

    give us all the necessary information so that we can be of better help to you

  • RE: INSERT Identity

    suppose your identity column is A, and you want to set B = A then

    Alter Table TableName ADD

    B as A

  • RE: INSERT Identity

    yes, you can set your column as a computed column

     

  • RE: Semi-colon use

    i have actually realised that you can also use the semi colon when u have multiple statements in a query when using sp_send_dbmail

  • RE: Converting data types to Unicode

    what about creating a separate db with the required nvarchar datatypes and then do an import into it

  • RE: VBScript Object Required error

    i was about to say that, it might be better to post in an asp forum coz u will get better help there

  • RE: Quartiles

    does that mean no progress??

Viewing 15 posts - 76 through 90 (of 654 total)