Viewing 15 posts - 7,216 through 7,230 (of 14,953 total)
WayneS (1/11/2010)
Thanks Gus.I saw that, and I'm sure that I fixed it before posting.... 😉
Can I blame in on the way things get quoted 'round here?
Makes sense to me.
January 12, 2010 at 7:05 am
Sounds like you're getting an incorrect error message, but anything I say at this point would be guesswork. That sounds like something that'll require access to the actual code...
January 12, 2010 at 7:02 am
Shouldn't have any measurable effect on performance.
January 12, 2010 at 7:01 am
You're welcome.
January 12, 2010 at 6:59 am
Yep, and you're welcome.
January 12, 2010 at 6:57 am
There are definite weaknesses in the wizard and the plan builder. I prefer custom code for that kind of thing. The plans are great for new DBAs who...
January 12, 2010 at 6:54 am
The questions on accounts will depend on your security needs.
It's doubtful that you'd need different accounts for the same service on different servers. You might, if they need to...
January 11, 2010 at 2:34 pm
shannonjk (1/11/2010)
Oh cool thanks 🙂Your post most have come right as I was posting mine 😀
You're welcome.
January 11, 2010 at 12:33 pm
He left out an open-bracket on it. Should be:
declare @proc sysname
set @proc = 'InsertWarehouseCountExisting'
SELECT schema_name(sp.schema_id) [Schema], object_name(sasm.object_id) [Procedure]
FROM sys.all_sql_modules sasm
INNER JOIN sys.procedures sp ON sasm.object_id = sp.object_id
WHERE sasm.definition like...
January 11, 2010 at 12:32 pm
I can't share my company's documents, because they are IP of the company. However, I can say, the best place to start is probably MSDN. They have a...
January 11, 2010 at 12:11 pm
This seriously looks like homework. Is it?
The way I'd do this is build a CTE that uses the Rank() function to rank the titles by price within each subject,...
January 11, 2010 at 11:58 am
To answer the original question: Yes, you can build in eval and port to full. I believe an in-place upgrade is allowed. If not, you move code/objects from...
January 11, 2010 at 11:52 am
I'm used to cursors working with "while @@fetch_status = 0" instead of the nested version you have.
What is it you're actually doing with the cursor? Most likely, you're going...
January 11, 2010 at 10:33 am
It might matter, if the application somehow ends up receiving those as output from the stored procedure. I've seen problems like that with procs that don't have "set nocount...
January 11, 2010 at 9:44 am
Viewing 15 posts - 7,216 through 7,230 (of 14,953 total)