Viewing 15 posts - 9,046 through 9,060 (of 13,469 total)
personally I usually put the results of a proc into a temp table, like this:
CREATE TABLE #WHORESULTS (
[WHORESULTSID] ...
July 15, 2010 at 11:23 am
i have yet to find a situation where a trigger featuring a cursor cannot be replaced with a set based operation. Usually a trigger might have a cursor because the...
July 15, 2010 at 11:18 am
you cannot get it to prompt for a value. it's not designed that way...it is designed to run unattended.
what you can do is make the job check a value in...
July 15, 2010 at 9:52 am
well, because Express does not HAVE analysis services or SSIS, getting an error message about being unable to analyze them for upgrade is a non issue.
I don't see anything preventing...
July 15, 2010 at 9:42 am
the devil is in the details...
what is the real name of the proc?
for example, you know that anything that starts with "sp_" is assumed to be in the master database...maybe...
July 15, 2010 at 5:49 am
sp_depends is 100% accurate for tables functions and views. you cannot create any of those things with a dependency to another object unless the object exists.
because of the way...
July 15, 2010 at 4:55 am
also i'm under the impression that verswion is more tied to the SQL the db is restored on...i took my SandBox from 2005, restored it on my sql 2008, and...
July 15, 2010 at 4:47 am
also consider this: change the presentation so it is not user centric...make it functionality centric.
a tree view with branches and sub branches of your modules and sub modules would probably...
July 14, 2010 at 5:42 pm
from a security presentation standpoint, I'd think that seeing 22 rows one for each security module, and having usually 4 security points, but sometimes 7 or 8 points would be...
July 14, 2010 at 5:30 pm
ok i see what you mean now;
i think the solution is to simply sp_helptext sp_helpuser, copy the parts of the code you DO want to use, and use THAT in...
July 14, 2010 at 4:09 pm
Joe Celko (7/14/2010)
July 14, 2010 at 12:56 pm
i can't duplicate the issue;
i can certainly insert the EXEC SP_HELPUSER into a table, but what do you mean by a database alias?
do you mean where you rename...
July 14, 2010 at 12:44 pm
well...you're going to present someone with a grid with 700 + columns? why? I would simply NOT do that.
maybe a redesign should be called upon to revisit why the data...
July 14, 2010 at 11:10 am
Julie try this function agaisnt your data.
this strips out everything that is not a number and not a character...so spaces, control characters, brackets or whatever get stripped out;
that seems to...
July 14, 2010 at 10:37 am
failrly straightforward requirement Bosco. they will not get any rights you don't give them. if they connect with SSMS, you cannot hide the existence of other databases, but they can't...
July 14, 2010 at 10:28 am
Viewing 15 posts - 9,046 through 9,060 (of 13,469 total)