Viewing 15 posts - 7,216 through 7,230 (of 7,636 total)
Glad I could help.
April 6, 2008 at 12:14 am
Jonathan Beck (4/4/2008)
So by your reply I gather this is still an open topic?
Uh, no. Just change the Nvarchar to Varchar.
April 6, 2008 at 12:13 am
No I don't mean Nouveau "Old School", I mean real Old School. I was already a professional programmer when IBM's Sequel was developed. I programmed for many years...
April 5, 2008 at 11:49 pm
Generally speaking, direct manipultation of the System Tables is no longer possible in SQL 2005.
April 4, 2008 at 9:00 pm
Also, I believe that Visual Studio Team Systems is integrated with SQL Server.
April 4, 2008 at 8:57 pm
I am old school: I always say "Sequel", though am I so comfortable with hearing it either way that I can rarely remember which way a specific person says it.
April 4, 2008 at 8:48 pm
Well, Brian provided a better explanation of the Agent approach than I could have.
As for Service Broker, I just want to add, not only can do the same...
April 4, 2008 at 8:40 pm
Michael Valentine Jones (4/4/2008)
April 4, 2008 at 8:13 pm
rbarryyoung (4/3/2008)
Select A.*, B.*
From TableA A
Left Outer join TableB B
ON B.CompanyID = Left(A.CompanyID
, (Select MAX(len(B2.CompanyID)) From TableB B2
Where B2.CompanyID = Left(A.CompanyID, Len(B2.companyID))
And ( B2.CompanyID...
April 4, 2008 at 3:35 pm
Note that the Agent will only retain so much history (based on your settings) and so you may not have 30 days of history to query.
April 4, 2008 at 2:59 pm
I have seen Cursor-based queries and procs do this also.
April 4, 2008 at 2:53 pm
Yes, it does require that there are no other users of the database and will wait for them to leave.
Alternatively, you can use:
ALTER DATABASE msdb SET ENABLE_BROKER with rollback...
April 4, 2008 at 2:37 pm
Viewing 15 posts - 7,216 through 7,230 (of 7,636 total)