Viewing 15 posts - 76 through 90 (of 654 total)
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...
August 29, 2007 at 7:33 am
or for SELECT @result = @result + @Match
try
SELECT @result = isnull(@result,'') + isnull(@Match,'')
August 29, 2007 at 7:29 am
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 ,'')
August 29, 2007 at 7:28 am
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...
August 29, 2007 at 7:18 am
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...
August 28, 2007 at 6:24 pm
is it possible for you to tell us what this column does?
August 22, 2007 at 9:24 am
in that case I would propose you use a trigger on insert or update on the table, checking if the inserted value is null
August 22, 2007 at 7:03 am
in what circumstances
(the field may in other circumstances have a valiue other than the identity.)
you can use an expression on the column
August 22, 2007 at 6:16 am
give us all the necessary information so that we can be of better help to you
August 22, 2007 at 6:02 am
suppose your identity column is A, and you want to set B = A then
Alter Table TableName ADD
B as A
August 22, 2007 at 5:47 am
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
August 17, 2007 at 11:50 am
what about creating a separate db with the required nvarchar datatypes and then do an import into it
August 15, 2007 at 3:26 pm
i was about to say that, it might be better to post in an asp forum coz u will get better help there
August 14, 2007 at 12:22 pm
Viewing 15 posts - 76 through 90 (of 654 total)