Viewing 15 posts - 10,966 through 10,980 (of 13,462 total)
a server side trace, rather than running profiler, is actually very light weight and has minimal impact.
i personally use something like this, but it would rollover automatically based on size,...
June 16, 2009 at 10:58 am
isn't the patindex command like this, with % signs?
select
patindex('%http://www.blabla.com/tx/chrts/nln_lstngs/cnrg_ntrm-eng.html%', es_text),
ES_TEXT
from MultilingualText2
CREATE TABLE Table_Text
(Col1 TEXT)
INSERT INTO Table_Text
SELECT 'blah-blah' + 'http://www.blabla.com/tx/chrts/nln_lstngs/cnrg_ntrm-eng.html' UNION ALL
SELECT 'other stuff in the textfield' + 'http://www.blabla.com/tx/chrts/nln_lstngs/cnrg_ntrm-eng.html'...
June 16, 2009 at 10:19 am
virgil i hope this might help: fiddling wiht TEXT fields is tough...here's a procedure i wrote to do find and replace in TEXT fields. I know this works on huge...
June 16, 2009 at 9:17 am
i think what you want is to add the "title" attribute to your a href tag.
looks like this:

June 16, 2009 at 8:54 am
wow i could make an article on SSC over this...lots of questions below got my thoughts flowing.
VB6 can be used, but it was l8imited to 8000 chars due to the...
June 16, 2009 at 6:32 am
I'm not sure you have your arms around how SQL server uses ports.
SQL server cannot listen to multiple ports. one port per instance default is 1433, as you know, and...
June 15, 2009 at 10:39 pm
Oleg I'm glad you found a solution here. this thread started back in 2005, and has produced a lot of great ideas and solutions. people find it and it often...
June 15, 2009 at 4:12 pm
chburns (6/15/2009)
June 15, 2009 at 9:32 am
Dorian Gray (6/15/2009)
June 15, 2009 at 9:25 am
oops double post sorry folks...continue below
June 15, 2009 at 9:25 am
if your developers are on the same network, then I don't believe it can be done.
each instance of SQL server listens to one port...no problem.
a router can take traffic from...
June 15, 2009 at 6:17 am
guptaajay1985 (6/15/2009)
Then why we use alias can anyone clarify
alias? I'm not clear on your question. which alias are you referring to?
You might use port forwarding because you have 10...
June 15, 2009 at 5:41 am
port forwarding is not handled by SQL Server, it is typically handled by a router that establishes the firewall between your internal network and the internet.
here's a screen shot of...
June 15, 2009 at 5:20 am
An Identity column will not meet your requirement, since you need it to reset back to 1 with each claim number.
as you've probably already found, there's no inbuilt way...
June 14, 2009 at 7:25 am
Object:Deleted would be the dropping of a table, foe example. the default trace only tracks object level events: CREATE/ALTER/DROP of database objects (DDL)
you would need a DML trace(Data Manipulation)
I'm adding...
June 12, 2009 at 10:41 am
Viewing 15 posts - 10,966 through 10,980 (of 13,462 total)