Viewing 15 posts - 2,056 through 2,070 (of 3,543 total)
Totally agree.
My first use of Windows was with 3.0 and have worked on each version since (even...
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.
December 6, 2005 at 7:37 am
Or
DateAdd(minute, -1440, GetDate())
OK, only kidding
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...
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...
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...
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...
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...
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
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]'
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 ...
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...
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...
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,...
November 30, 2005 at 7:01 am
Prefix the contents of each value in the ID column with a single quote to make it a text field, the ISAM will then make the column nvarchar in the output...
November 25, 2005 at 10:23 am
Viewing 15 posts - 2,056 through 2,070 (of 3,543 total)