Viewing 15 posts - 8,131 through 8,145 (of 26,490 total)
5280_Lifestyle (4/5/2013)
DECLARE @c varchar(4000)
SET @c = '
SELECT DISTINCT AL1.user_id_entered, AL1.reservation_id, AL1.start_date, AL1.status_code, AL1.actual_minutes, AL1.scheduled_minutes,
AL1.customer_abbr, AL2.company_name, AL2.parent_company, AL1.reservation_name, AL1.product, AL1.customer_extend, AL1.category_abbr,
AL1.reason_code, CONVERT(varchar(3),AL1.start_date,100) AS StartDateMonth, YEAR(AL1.start_date) AS StartDateYear,
CASE
WHEN MONTH(AL1.start_date)...
April 5, 2013 at 10:20 am
hafsahafeez91 (4/5/2013)
...
April 5, 2013 at 10:04 am
jbalbo (4/5/2013)
HiDoes anyone know how I can setup this where statement to
have @enddate be now() if the date is in the future?
(calendarDate BETWEEN @startdate AND @enddate)
Thanks
Joe
Curious how hard you...
April 5, 2013 at 10:02 am
5280_Lifestyle (4/5/2013)
April 5, 2013 at 9:58 am
Nope, can't provide more help as I have nothing to work with here. You will need to post the DDL for your tables, sample data, and expected results. ...
April 5, 2013 at 9:51 am
David McKinney (4/5/2013)
We didn't declare a smallint, Bill Gates and his pals did.
First, I would not blame Bill Gates for this.
Looking at the code for sys.sp_fulltext_catalog I can definately see...
April 5, 2013 at 9:38 am
Probably something along these lines:
CREATE PROCEDURE [dbo].[Get_Ques_id_for_can](
@candidate_id varchar(max),
@Exam_id varchar(max),
@sec_id bigint,
@Q_id varchar(max) OUTPUT
)
AS
...
April 5, 2013 at 9:29 am
And, if you think about it, it comes down to how is the requirement is specified. The two following requirements are different:
The system must (or shall) retain the original...
April 4, 2013 at 4:38 pm
ScottPletcher (4/4/2013)
Lynn Pettis (4/4/2013)
April 4, 2013 at 4:30 pm
JJB@TGT (4/4/2013)
SELECT DISTINCT
Ref.referenced_database_name AS ImportDatabase
,Ref.referenced_schema_name...
April 4, 2013 at 4:22 pm
Not saying I am right or wrong. I wanted a straight answer to a straight question: Is it a problem to lose the data if there is an restart...
April 4, 2013 at 4:11 pm
ScottPletcher (4/4/2013)
Lynn Pettis (4/4/2013)
ScottPletcher (4/4/2013)
April 4, 2013 at 3:10 pm
ScottPletcher (4/4/2013)
I mean, seriously,...
April 4, 2013 at 2:45 pm
Lowell (4/4/2013)
rajarshi_ghosh_05 (4/4/2013)
No. We dont bother about the temp table data not if anything happens like network failure or server restart or user system restart! We dont have to preserve...
April 4, 2013 at 12:04 pm
Viewing 15 posts - 8,131 through 8,145 (of 26,490 total)