Viewing 9 posts - 1 through 9 (of 9 total)
Running MSSQL 2000, I get
[font="Courier New"]Server: Msg 208, Level 16, State 1, Line 2
Invalid object name 'sys.dm_db_index_usage_stats'.
Server: Msg 208, Level 16, State 1, Line 2
Invalid object name 'sys.sysobjects'.
Server: Msg 208,...
March 1, 2010 at 11:54 am
With a few changes, it runs on SQL2000: (table names go into the WHERE clause on line 35, eg 'tIndividuals') - Merci, Jean-Pierre - RM
--Jean-Pierre Lebrasseur
--date 04-12-2009
--this script give you...
December 28, 2009 at 8:12 am
I am intrigued by this thread, having worked with Access front-ends for some time. Would you mind posting the stored procedure code?
Rob
January 23, 2009 at 9:52 am
Favorite interface: the Taelon's computer which responded to hand gestures and summoned a holographic console (Gene Roddenberry's Earth - The Final Conflict)
Rob Maurer
December 20, 2008 at 11:03 am
I ran the original code and got this error (v2000)
Server: Msg 2812, Level 16, State 62, Line 7
Could not find stored procedure 'msdb.dbo.sysmail_help_profile_sp'.
Server: Msg 2812, Level 16, State 62, Line...
October 3, 2008 at 7:28 am
Do you mean that you want to round it to the nearest *tenth* instead of the nearest *ten-thousandth*?
July 23, 2007 at 6:57 am
I like this approach: In the stored procedure, DECLARE a temp table and fill it by SELECTING the first set of records (A), then UNION that recordset to a second...
July 2, 2007 at 6:20 am
I use this to accomplish a similar goal:
ALTER FUNCTION dbo.CurrentUser ()
RETURNS VARCHAR (50)
BEGIN
DECLARE @sys_usr char(80), @name char(50),
@pos int, @length int
SET @sys_usr = SYSTEM_USER
set @length = len(@sys_usr)
set @pos =...
May 3, 2007 at 6:31 am
Viewing 9 posts - 1 through 9 (of 9 total)