Viewing 15 posts - 6,526 through 6,540 (of 26,490 total)
In an empty database run the following and let us know if this is what you are looking to achieve.
CREATE TABLE dbo.[Queue]
(
QueueId INT NOT NULL PRIMARY KEY...
June 12, 2014 at 6:20 pm
TheGreenShepherd (6/12/2014)
I have three tables - Queue, Tasks, and QueueTaskLink
CREATE TABLE Queue
(
QueueId INT NOT NULL PRIMARY KEY IDENTITY(1,1),
MaximumQueueLength...
June 12, 2014 at 5:29 pm
I am not sure what you are trying to accomplish. The query you posted doesn't appear to be what you are asking about, or I just don't understand the...
June 12, 2014 at 5:03 pm
Modified the dateadd just in case you have jobs that run an hour or more:
select
sjh.job_id,
CONVERT(varchar(20), CAST(CAST(sjh.run_date as char(8)) as date),110) run_date,
...
June 12, 2014 at 4:55 pm
How about this (sorry, but I didn't work with your query):
select
*,
cast(cast(run_date as varchar) + ' ' + stuff(stuff(right('000000' + cast(run_time as varchar),6),5,0,':'),3,0,':')...
June 12, 2014 at 3:45 pm
I have to agree with Alan.B, I have worked with TEKSystems in the past and they are a good company to work with as a contractor. The two associates...
June 11, 2014 at 2:02 pm
If you move a subset of the data to a test database with tables created as they are in production, can you reproduce the issue?
June 9, 2014 at 8:05 pm
jcrawf02 (6/9/2014)
Corgi's trolling, just ignore. Not a new developer, he/she will figure it out.Curious, is the TITD actually a TITD now?
Not really. Could be if I slept in transient...
June 9, 2014 at 9:47 am
And the results from the query SELECT @@VERSION?
June 8, 2014 at 4:36 pm
First, I reformatted your code:
DECLARE @ID varchar(12)
DECLARE @Volume int, @Paid int, @Denied int
DECLARE @PaidAmount money, @DeniedAmount money
DECLARE @CID varchar(12), @CStatus varchar(2), @amt_paid money
SET @Volume = 0
SET @Paid = 0
SET...
June 8, 2014 at 12:55 pm
Looking at the code you posted, I have no idea where to start. There actually isn't much to work with.
You can start by reading these articles:
June 8, 2014 at 12:13 pm
Please do not post in multiple threads as this will simply frustrate those who want to help and fragment any responses you may get.
Please post response here
June 8, 2014 at 12:08 pm
Could you post the actual (and entire) error message you are getting? Also, what is the result of this query:
SELECT @@VERSION
June 8, 2014 at 10:07 am
Reformatted your code to read it easier:
select
A.C1,
Max(DateDiff(D, Coalesce (Date_Physician_Reviewed,Date_Nurse_Reviewed,CODER_RVWD_DT),Getdate())),
'MN QA REPORT - PASSED RECONSIDERATION REPAYMENT'
from
...
June 8, 2014 at 9:52 am
Viewing 15 posts - 6,526 through 6,540 (of 26,490 total)