Viewing 15 posts - 1 through 15 (of 111 total)
use CURSOR_STATUS
From BOL:
CURSOR_STATUS
A scalar function that allows the caller of a stored procedure to determine whether or not the procedure has returned a cursor and result set for a given...
August 2, 2002 at 2:14 pm
Write a snippet of code with intentional mistake and let them figure it out
August 2, 2002 at 2:09 pm
quote:
I am experiencing similar problems. Have all the correct SP's in place, set up the accounts according to spec. and...
July 29, 2002 at 2:02 pm
quote:
Tried xp_stopmail/xp_startmail to see if anything changes?Andy
OK, I'm back in business and we made...
July 29, 2002 at 10:40 am
Andy,
I was sending e-mail to myself with full e-mail address, so I know it is valid.
We are able to send e-mail from this server without using xp_sendmail, but our applications...
July 25, 2002 at 9:54 pm
You can try :
update syscolumns
set length =2000
where id =object_id('your_table')
and name = 'column name'
The problem is - you can get an error message :
"Ad hoc updates to system...
May 31, 2002 at 10:51 am
Are you running your query from QA?
If it is a case you should change settings on a menu:
Query-Current Connection Option on Advanced Tab - Maximum Characters per column.
Set...
May 31, 2002 at 10:20 am
quote:
There is no array construct in SQL, but there is a table datatype, which is similar.
May 24, 2002 at 11:45 am
quote:
the only problem I see with epols idea is zzz is last yes but zzza would be after that. Logicall should not...
May 23, 2002 at 10:41 am
Try:
SELECT field1, field2 FROM table
order by isnull(nullif(field3,''),'zzz') asc
May 23, 2002 at 9:30 am
Agree with Andy - VB is the best way to go!
Also, all of the above mentioned are Microsoft products - less compatibility issues may arise.
May 22, 2002 at 8:58 pm
quote:
ISNULL(col1,'') + ISNULL(col2,'') + ISNULL(col3,'')
So if col2 is null then you get col1col3 and not NULL.
May 20, 2002 at 6:01 pm
You might find helpful this article:
http://www.sql-server-performance.com/dd_creating_logins.asp
May 20, 2002 at 1:04 pm
Antares, great response!
Make it an article, you already posted a couple of FAQ on this subject, it seems like you know what you are talking about!
Usually forum's responses are getting...
May 16, 2002 at 8:40 am
Viewing 15 posts - 1 through 15 (of 111 total)