Viewing 3 posts - 1 through 4 (of 4 total)
Art,
You could try this:
SELECT ticket_id,ticketnote_id, ticketnote_byname, Ticketnote_text FROM DMS_TICKETNOTES
WHERE Ticketnote_text LIKE '%998877%'
It's just a simple query that should return the values you are looking for from any row that...
November 10, 2008 at 9:36 am
Art,
You could insert a wildcard character % into the query like such:
SELECT ticket_id,ticketnote_id,ticketNote_text FROM dms_ticketnotes WITH (NOLOCK)
WHERE CONTAINS (ticketnote_text, ' "*%0099887766*" ')
Order by Ticketnote_id
This should return what you are...
November 3, 2008 at 10:48 am
Looks like it was the Performance Monitor.
When we removed
SQL Server Buffer Manager Object
-Buffer Cache Hit Ratio
SQL Server Locks Object
-Average Wait Time
from the counter list, the problem seems to be...
September 10, 2008 at 10:51 am
Viewing 3 posts - 1 through 4 (of 4 total)