Viewing 15 posts - 2,056 through 2,070 (of 3,544 total)
| thank you for making me feel like an old goat |
ooops! ![]()
Far away is close at hand in the images of elsewhere.
Anon.
December 8, 2005 at 5:39 am
Totally agree. ![]()
My first use of Windows was with 3.0
and have worked on each version since (even...
Far away is close at hand in the images of elsewhere.
Anon.
December 8, 2005 at 3:17 am
Not that I am aware of.
The only way I can think of getting the severity is to query the master.dbo.sysmessages table.
Far away is close at hand in the images of elsewhere.
Anon.
December 6, 2005 at 7:37 am
Or
DateAdd(minute, -1440, GetDate()) ![]()
OK, only kidding ![]()
Far away is close at hand in the images of elsewhere.
Anon.
December 6, 2005 at 7:15 am
1.
Create a table with single varchar column, concatenate (and cast where necessary) columns from each table into the varchar column. Extract the table into text file via DTS or OSQL (in DOS...
Far away is close at hand in the images of elsewhere.
Anon.
December 6, 2005 at 7:10 am
Personally I do what you described by creating a proc that updates a single row using key provided and call this many times from the app as required. This is...
Far away is close at hand in the images of elsewhere.
Anon.
December 5, 2005 at 7:53 am
CREATE PROCEDURE usp_Person_GetVisits
(
@PersonID Varchar(30) = NULL
)
AS
SET NOCOUNT ON
SELECT visitType,
CASE WHEN visitType='I' THEN 'In-Patient' ELSE 'Out-Patient' END AS [visitTypeDesc]
FROM Visit
WHERE PersonID = @PersonID
ORDER...
Far away is close at hand in the images of elsewhere.
Anon.
December 5, 2005 at 7:29 am
Did you reapply SP4, had similar problems on SQL7 when I installed FTS after SP's applied and had to reapply SP to get FTS to work.
I reapplied SP3a on my...
Far away is close at hand in the images of elsewhere.
Anon.
December 5, 2005 at 7:19 am
Maybe ![]()
Besides if I posted it first time you'd have nothing to refer to
, then your posts...
Far away is close at hand in the images of elsewhere.
Anon.
December 2, 2005 at 8:11 am
So will
WHERE waccessno LIKE REPLACE('XXXXXXXXXX-XX-XXXXXX','X','[0-9a-z]')
and looks prettier and neater than yours ![]()
Far away is close at hand in the images of elsewhere.
Anon.
December 2, 2005 at 7:56 am
SELECT waccessno
FROM
WHERE waccessno LIKE '[0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z]-[0-9a-z][0-9a-z]-[0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z][0-9a-z]'
Far away is close at hand in the images of elsewhere.
Anon.
December 2, 2005 at 7:28 am
Create a format file containing the following
8.0
13
1 SQLCHAR 0 255 "\r\n" 1 ACCTNUMB
2 SQLCHAR 0 255 "\r\n" 2 LOCOPT
3 SQLCHAR 0 255 "\r\n" 3 PAYAMT
4 SQLCHAR 0 255 "\r\n" 4 ...
Far away is close at hand in the images of elsewhere.
Anon.
December 1, 2005 at 7:48 am
All nonaggregated columns in the SELECT clause must also be listed in the GROUP BY clause
If we're nitpicking :rolleyes: then....
Even though I got it correct I don't think it is...
Far away is close at hand in the images of elsewhere.
Anon.
December 1, 2005 at 7:14 am
Really
I don't think so ![]()
You stated that a parent may be present but no child yet...
Far away is close at hand in the images of elsewhere.
Anon.
November 30, 2005 at 8:03 am
If that is the true text then sql will treat A,B and C as ignored words and you will only be able to use CONTAINS
select * from where CONTAINS(cl_name,...
Far away is close at hand in the images of elsewhere.
Anon.
November 30, 2005 at 7:01 am
Viewing 15 posts - 2,056 through 2,070 (of 3,544 total)