Viewing 15 posts - 1 through 15 (of 29 total)
October 31, 2017 at 12:44 pm
Hey Joe - I'm using Project Deployment Model.
Packages run directly in Visual Studio, or if i manually run from Integration Services Catalog. It's very frustrating.
October 31, 2017 at 12:42 pm
Thanks!!!
October 2, 2017 at 7:59 am
Thank you everyone! Appreciate the input and help!
May 8, 2015 at 12:07 pm
Its for research purposes. The table that I am analyzing is a back end table of a front end clinical survey. A null value means that question was skipped and...
May 8, 2015 at 10:44 am
Thanks for this!
I sometimes work with large data sets where my tables have over 100 columns. Is there an easier way of doing this instead of 100 case statements? Maybe...
May 8, 2015 at 9:21 am
Here is the sql for my querry.
SELECT DATENAME(month, DateSvc) AS Month, DAY(DateSvc) AS day, YEAR(DateSvc) AS 'Year', COUNT(ChargeKey) AS total,
convert(char(19),datesvc,100), Right('0' + Case When DateName(hh,...
August 23, 2011 at 9:48 am
Yes, the field is a datetime field. 2009-07-15 17:30:00.000
May 6, 2011 at 2:43 pm
Sorry, I shouldve provided more details:
My Table Name is Hiredates.
Here are the fields:
staffid int,
hiredate datetime,
terminationdate datetime,
status varchar(10).
I was hoping to allow the user to put in a future termination date....
February 17, 2011 at 12:59 pm
Thank You very much!
Great job on this also, I would've never figured this out on my own. Very much appreciated. You
are obviously a genius.
:cool::cool::cool:
November 8, 2010 at 11:22 am
here is the ddl for the table and some raw data.
Create table [Orders] (
[item] [varchar] (40) NOT NULL,
[productkey] [int] NOT NULL,
[price] [money] NOT NULL,
[Dateofpurchase] [datetime] NOT NULL,
[ordernumber] [int] NOT NULL
)
Item...
November 8, 2010 at 10:32 am
Yes your right, my mistake. I would want the output to be :
8/29/2010
9/5/2010
9/12/2010
9/19/2010
9/26/2010
November 8, 2010 at 9:45 am
Thank You very much for your help. I am dumping these records into one table to then use for a Crystal Report, thats why I am deleting my results before...
October 19, 2010 at 7:19 am
Here is the CODE for the first procedure:
ALTER procedure [dbo].[TP_PatientNote]
(
@clientkey int
,@op__docid int
,@DOS DATETIME
)
as
--PATIENT NOTE DATA
DECLARE @AGE INT
DECLARE @DOB DATETIME
DECLARE @ATTENDED VARCHAR (40)
DECLARE @CHARGEKEY INT
DECLARE @CLINICIAN VARCHAR(40)
DECLARE...
October 18, 2010 at 2:14 pm
Viewing 15 posts - 1 through 15 (of 29 total)