Viewing 15 posts - 2,791 through 2,805 (of 7,429 total)
LockwoodTech http://www.lockwoodtech.com/index_lognavigator.htm has an item in beta you can download. Might do the job. The output of DBCC LOG isn't extremely complicated just cryptic and takes quit a bit of...
June 18, 2003 at 4:09 am
quote:
SQL does not support conditional joins.Best is to work set-based
First SELECT returns records for billing address.
June 18, 2003 at 4:04 am
Alerter is a Service in Windows 2000 and I believe XP but don't have a machine installed readily available.
June 18, 2003 at 3:27 am
The problem is interger values produce integer results, at least one has to be a decimal to get a decimal result. Try
Select
Permnum,
ROUND(
(
ISNULL((CASE When ST1Q1 <>...
June 17, 2003 at 6:53 pm
Inner Join in most cases makes no difference when it comes to that except maybe if the was some ALERT (alias) reference. But that is something you have to play...
June 17, 2003 at 4:27 pm
May not be the best solution but should work for you calculation try
(
ISNULL((CASE When ST1Q1 = 'N' Then Null ELSE ST1Q1 End),0) +
ISNULL((CASE When ST1Q2 =...
June 17, 2003 at 3:19 pm
ZoneAlarm works quite well as far as the free version http://www.zonealarm.com but you are saying net send messages. Just turn off Alerter and set to Manual should fix that if...
June 17, 2003 at 3:02 pm
Not to one up Jay here (sorry joke about another thread). But here is another alternative.
SELECT
COALESCE(LTRIM(COALESCE(Salutation,'') + ' ' + FName + ' ' +...
June 17, 2003 at 2:57 pm
quote:
I've been outdone once again. 🙂
Not trying for that
. I think...
June 17, 2003 at 2:39 pm
Just a thought after I left this but here
quote:
AND ISNULL(appt.deleted, 'N') <> 'Y'
Are we really...
June 17, 2003 at 12:20 pm
Good additonal point Jay. Always helps when more than one person looks over code. After all this then it boils down to testing indexes and execution plans.
June 17, 2003 at 6:49 am
Sorry, I use the Procedure ADO command type not a string built from the SP. And the account doesn't have any access other than an occiassional view hit which would...
June 17, 2003 at 5:28 am
Ok, I understand if you are using injectable query strings that are built dynamically. But I wrap everything except a few views in SPs so I am covered. But I...
June 17, 2003 at 5:06 am
Ok, maybe I missed something all this time but I have never had a special character bother other than ' as long as wrapped in single quotes 'nnnnnn'. So what...
June 17, 2003 at 4:45 am
Oops, keep in mind the code listed in the previous is example based with notes and not fully completed. Make sure you read the notes and explainations to build proper...
June 17, 2003 at 4:42 am
Viewing 15 posts - 2,791 through 2,805 (of 7,429 total)