Viewing 15 posts - 4,876 through 4,890 (of 13,465 total)
did you create the proc on this server, and put it in the master database?
remember you also had to mark it as a system procedure with EXECUTE sp_ms_marksystemobject 'sp_spaceused2'
like i...
August 23, 2012 at 3:10 pm
the USE <dbname> and the EXEC sp_....have to be in the same EXEC statment....otherwise the fiirst one, just use <dbname> goes out of scope when the the eXEC finishes (instantly)
declare...
August 23, 2012 at 2:58 pm
ok, i just googled "Non UTF-8 Characters", and the only thing i can find is when something got malformed; otherwise, It looks like UTF covers teh whole range of...
August 23, 2012 at 2:42 pm
Ajdba (8/23/2012)
I am not sure why it is not liking EDWGEARS..GT_GEARS.VW_GEARS_REPORT_DATA conventions;
LinkedServerName.DatabaseName.SchemaName.TableName.
i doubt very much you have a schema name named GT_GEARS
it's much more likely that it should be EDWGEARS.GT_GEARS..VW_GEARS_REPORT_DATA
...
August 23, 2012 at 12:42 pm
I'm trying to find the thread, but we once did a specific test here on the forums about whether there is a performance hit on whether you explicitly drop a...
August 23, 2012 at 9:02 am
into #temp
double check your code:
the only thing that does is create a temp table.
then it leaves at the end of the procedure.
maybe you wnat to SELECT from that temp table...
August 23, 2012 at 7:20 am
anthony not sure if you have seen this yet;
there's a helpdesk app called ZenDesk (no experience with it, sorry), and there is a codeplex project that integrates Zendesk with TFS...
August 23, 2012 at 6:28 am
laurie-789651 (8/23/2012)
Why is avoiding syntax checking a good idea?
It's a holdover from how my scripts get deployed; trying to avoid GO statements, so everything gets wrapped into dynamic SQL for...
August 23, 2012 at 6:07 am
the table layout is critical here. you've got to provide the DDL to get a good answer;
are Astore and bstore columns in the same table, or two differnet tables? or...
August 23, 2012 at 5:57 am
I tend to simply check for the object_id a lot:
I also tend to put the command for create/drop/alter for the table in dynamic SQL to avoid syntax checking.
IF OBJECT_ID('ABC_School') IS...
August 23, 2012 at 5:50 am
eugene.pipko (8/22/2012)
<quote>The other thing you might do is take sp_spaceused, get the code...
August 23, 2012 at 5:45 am
RBarryYoung (8/22/2012)
That worked perfectly, it was exactly what I needed. Thank Lowell! 🙂
Sweet! glad that worked! I know I had installed it once on both a 2005 32 bit,...
August 23, 2012 at 5:23 am
simon.letts (8/23/2012)
That is exactly it Lowell!! Thanks so much for your time on this, it works a treat and saves me time re-working other solutions 🙂
Excellent! glad this...
August 23, 2012 at 5:21 am
the error is occuring in the UDF itself, it looks like; can you post that? we can help you rewrite it to avoid that error.
August 23, 2012 at 5:21 am
i think what you want is instead of the web client, say executing a stored procedure that does a bunch of work, you want to have the web page activiate...
August 22, 2012 at 12:13 pm
Viewing 15 posts - 4,876 through 4,890 (of 13,465 total)