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...


    Everything you can imagine is real.

  • RE: SQL Function Prob

    or for SELECT @result = @result + @Match

    try

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


    Everything you can imagine is real.

  • 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 ,'')


    Everything you can imagine is real.

  • 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...


    Everything you can imagine is real.

  • 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...


    Everything you can imagine is real.

  • RE: INSERT Identity

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


    Everything you can imagine is real.

  • 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


    Everything you can imagine is real.

  • 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


    Everything you can imagine is real.

  • RE: INSERT Identity

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


    Everything you can imagine is real.

  • RE: INSERT Identity

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

    Alter Table TableName ADD

    B as A


    Everything you can imagine is real.

  • RE: INSERT Identity

    yes, you can set your column as a computed column

     


    Everything you can imagine is real.

  • 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


    Everything you can imagine is real.

  • RE: Converting data types to Unicode

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


    Everything you can imagine is real.

  • 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


    Everything you can imagine is real.

  • RE: Quartiles

    does that mean no progress??


    Everything you can imagine is real.

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