Viewing 15 posts - 46 through 60 (of 205 total)
I can't give you a definitive answer on either question, but I would recommend that you set up a test environment to check it out. Sounds like a pain but...
November 9, 2006 at 3:08 pm
Fair enough.
You could probably use SQL Profiler on the query to try to find out what is going on. Run it once without the isnull, then again with the isnull to...
November 2, 2006 at 6:53 pm
From what I can gather, you are saying that if @CtgyLvl04I is null, don't use it (because your option is to compare C.CtgyLvl04I to itself)
You could try using the following...
November 2, 2006 at 5:45 pm
There are two ways that I can think of.
How is your VB skills? You could use Excels built-in VA programming languange to connect to your database and loop through the...
November 2, 2006 at 5:20 pm
I don't fancy your chances. You might be better off spending time to get the queries to run more efficiently.
November 2, 2006 at 5:12 pm
I noticed noone had a ready answer for you, so might I suggest that you use sp_helptext to look at each sp in it's own environment and see what you...
November 1, 2006 at 8:42 pm
And one more thing - without really knowing all the details, do you really want to have a LIKE clause on you membership ID? One would hope that they know...
November 1, 2006 at 3:26 pm
Your like clause is all wrong for a start.
When using like you need to use some sort of wilcard in the string to ensure it looks for more than just...
November 1, 2006 at 3:21 pm
Perhaps by moving the integer data into a separate table you will have the opportunity to turn the query performance from good to exceptional - given the right structure and...
November 1, 2006 at 3:07 pm
I can't help but feel you've got earplugs on, or just selective hearing.
Either way you are just not listening. Having developers actively querying the production server is a no-no....
November 1, 2006 at 2:59 pm
Nice - bitwise operators. Elegant, fast and doesn't hide the calculation away.
November 1, 2006 at 1:40 pm
I'm not totally familiar with the PIVOT function but I believe that you still have to know what data you're dealing with (which rows you want to turn to columns),...
November 1, 2006 at 1:32 pm
My expectation would be that you do this when creating the individual database rather than the SQL Server installation.
When you create the database, you will need to create multiple filegroups,...
October 31, 2006 at 7:41 pm
Here is some code that will do it for you - though I have used slow cursors so if it's a one off task then speed will not be an...
October 31, 2006 at 7:35 pm
SELECT SPECIFIC_NAME
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_TYPE = 'FUNCTION'
ORDER BY SPECIFIC_NAME
Its the same view, just a different parameter to determine which objects you want to look at.
In SQL 2000 you can find it...
October 31, 2006 at 2:53 pm
Viewing 15 posts - 46 through 60 (of 205 total)