Viewing 8 posts - 1 through 8 (of 8 total)
Steve, John, Philip, thanks a lot for your help!
I'll now try to verify some of the assumptions I made about how things are to be done best with sql server...
August 3, 2006 at 2:19 am
I figured how to do an execution plan in text:
|--Nested Loops(Inner Join, WHERE: (like([t].[Topic], '%'+[f].[keyword]+'%', NULL)))
. |--Table Scan(OBJECT: (@kw AS [f]))
. |--Filter(WHERE: (STARTUP EXPR(Convert([@search])=1)))
. . |--Clustered Index Scan(OBJECT: ([shp].[dbo].[tblTopic].[PK_tblTopic] AS...
August 2, 2006 at 3:41 am
Thanks, Steve, but:
Because this query is only a (simplified) part of a bigger problem used as an example to illustrate my question in this forum which is:
How can I...
August 1, 2006 at 2:25 pm
By default I can't: Access is denied. This is because I do not have administrative privileges with my regular user account. I could use "runas", but then I'd have to...
July 13, 2005 at 4:57 am
Though not adding columns "all over the place", sometimes there has a column to be added, a view to be altered, a stored procedure to be fine-tuned. In a large...
June 21, 2005 at 2:42 am
I guess then there is nothing to do about that.
It would have been nice to be able to use the "SELECT *" statement in the function, for the simple reason...
June 9, 2005 at 9:25 am
That's what I thought, too, but unfortunately it doesn't. Here is my test case, I tried to make it as simple as possible:
CREATE TABLE [dbo].[_tblFunc] (
[idfunc] [int] IDENTITY (1, 1)...
June 9, 2005 at 9:06 am
yes, I did update the view with "EXEC sp_refreshview v_func". And it works, because when I do a simple "SELECT * FROM v_func", all columns are displayed correctly.
June 9, 2005 at 8:01 am
Viewing 8 posts - 1 through 8 (of 8 total)