Viewing 9 posts - 16 through 24 (of 24 total)
If the stored procedure is performing a join between any two databases with different collations on certain data types you'll get this issue. You can force it to try...
August 14, 2008 at 5:42 am
Hi,
If I've understood correctly:
SELECT
* --replace with what you want if not all
FROM
recent_student RS
JOIN
recent_student_graduate_2330 SG2 ON RS.individual_id = SG2.individual_id
JOIN
recent_student_professional SP ON RS.individual_id = SP.individual_id
JOIN
recent_individual RI ON RS.individual_id =...
August 14, 2008 at 5:37 am
There are some known issues with SQL2005 upgrade advisor on a cluster, but I think the errors you're seeing are more security based.
Try running as a user with both sysadmin...
August 14, 2008 at 4:31 am
I started to type a response, but though this link did it much better. The other thing you need to ensure is that your logins from the primary are...
August 14, 2008 at 4:25 am
You could always remove the built in notifcation and create a new TSQL job step such to be something like:
If SQLMail is configured:
exec master.dbo.xp_sendmail
@recipients = 'SQLAlerts@mycompany.com',
@Subject = 'master backup...
August 13, 2008 at 5:40 am
For this I'd make the assumption that a 0 for a day means that nothing happens.
P.S, I finished ealy too 😛
August 1, 2008 at 11:51 am
That's spot on Jack.
Thanks for the responses guys. I'm still trying to solve this myself too.
First one to a solution get's to go home early?
August 1, 2008 at 9:31 am
Ah, I'm liking the soltion, but comany 3 should take the longest...
It makes more sense if I explain the [DaystoDeliver]. It is the number of days that a delivery...
August 1, 2008 at 8:41 am
I'll gladly buy you a pint sir, if you can tell me what date the item will be delivered! I'm not catching your drift on the solution ... Fridays...
August 1, 2008 at 8:25 am
Viewing 9 posts - 16 through 24 (of 24 total)