Viewing 15 posts - 13,471 through 13,485 (of 18,923 total)
IF Object_id('ListTableColumns') > 0
DROP FUNCTION ListTableColumns
GO
CREATE FUNCTION dbo.ListTableColumns (@TableID as int)
RETURNS varchar(8000)
AS
BEGIN
Declare @Items as varchar(8000)
SET @Items = ''
SELECT
@Items = @Items + C.Name + ', '
FROMdbo.SysColumns C
WHEREC.id = @TableID
AND OBJECTPROPERTY(@TableID, 'IsTable')...
September 7, 2005 at 9:12 am
In the comment column I'd enter : "Guess why" ![]()
September 7, 2005 at 8:34 am
When you hit save in EM... or when you run the create index script in QA.
September 7, 2005 at 7:09 am
And here's a repost of the solution.
IF EXISTS( SELECT * FROM dbo.sysobjects WHERE id = object_id( N'dbo.ReplaceSpecialCharacter2000') and XType = 'FN')
DROP FUNCTION dbo.ReplaceSpecialCharacter2000
GO
IF EXISTS( SELECT * FROM dbo.sysobjects WHERE id...
September 7, 2005 at 6:42 am
"I still want to know what I did wrong in my hyper-link code above... "
You posted it using IE with a text editor, it creates the link automatically for you...
September 7, 2005 at 6:35 am
There's an actual meaning to that name... care to take a guess?
September 6, 2005 at 9:25 pm
I'll be able to answer that one once Farrell finds the right post.
Farrell I meant the one where there was a search/replace table and where the udf search/replaced all the...
September 6, 2005 at 9:09 pm
If you made the right choice for that query yes (assuming there's enough data for the index to be usefull). But you have to also consider all other queries...
September 6, 2005 at 2:49 pm
Now it became interesting. Are you sure it's not possible that the access db has LINKED TABLES?
September 6, 2005 at 2:40 pm
Is it possible that some tables are linked to msde??
September 6, 2005 at 2:35 pm
Viewing 15 posts - 13,471 through 13,485 (of 18,923 total)