Viewing 15 posts - 76 through 90 (of 726 total)
What are the odds that someone there knows about the undocumented sp_MS_marksystemobject stored procedure? If good, then that might be your problem.
September 20, 2007 at 8:30 am
I meant test if IsMSShipped is equal to 1 and see if your proc shows up. Since it's showing up when you remove the filter based on the IsMSShipped property, but...
September 20, 2007 at 7:58 am
The @fktable_name parameter doesn't work for you?
September 19, 2007 at 9:25 pm
That's a bit strange. Just for fun, try changing the line...
(OBJECTPROPERTY(O.ID, 'IsMsShipped') = 0)
to
(OBJECTPROPERTY(O.ID, 'IsMsShipped') <> 1)
I'm wondering if somehow a Null (or other non 0/1) value is slipping into that...
September 19, 2007 at 4:21 pm
Take one of the stored proc that's not returning from your query, and find it in sysobjects and syscomments. Post the two rows here (you can trim the two columns with the...
September 19, 2007 at 2:21 pm
Are these databases, including the new ones, all on the same server? If so, is that server 2000 or 2005? Also, are these stored procedures owned by "dbo"?
September 19, 2007 at 1:29 pm
No problem at all.
You probably want to redo the ones you've already done, as the comments and objects, even though they found a match, aren't necessarily a correct match.
September 19, 2007 at 12:22 pm
Where does the code run from? Since there is no "USE" in the @sql string, I'm guessing that this runs from a single location, and if that's the...
September 19, 2007 at 11:56 am
I have no idea if it will improve your performance, but there are two main options that I know of if you want the call written in T-SQL without using...
September 19, 2007 at 10:35 am
Vic, open up your Services window and check the service named Protected Storage. It should be running. If not, that's the likely culprit, so start it up and try again.
Also,...
September 17, 2007 at 3:03 pm
I agree with Kenneth on this one. What you might want to do is add a a counter to your loop, and print out the counter and the code for...
September 17, 2007 at 12:35 pm
Well, I count at least 6 inner joins in that cursor, and without the data, it's hard to know where they're being lost. Can you at least post the Print(@strSQLX)...
September 16, 2007 at 10:16 am
Are you mapping Dept 1 to DeptCode 200 because 2 employees that were in Dept 1 are in 200, while only 1 each are in 201 and 202? If so,...
September 14, 2007 at 8:28 am
I don't think you can do that with a standard query, as the password shouldn't be exposed to you through any interface that I'm aware of. I think ADSI only...
September 13, 2007 at 3:46 pm
Viewing 15 posts - 76 through 90 (of 726 total)