Viewing 15 posts - 2,821 through 2,835 (of 15,381 total)
richardmgreen1 (5/28/2015)
Here's the insert statement:-
set dateformat dmy
truncate table [CDSExtractInpatients6.2].dbo.CDS_Inpatients_CDS_Feeds_Import
INSERT INTO [CDSExtractInpatients6.2].[dbo].[CDS_Inpatients_CDS_Feeds_Import]
SELECT
CdsType,
i.CdsUniqueIdentifier,
CONVERT(VARCHAR(10),CdsExtractDate,120) AS [Extract_DATE],
CONVERT(VARCHAR(10),CdsReportPeriodStartDate,120) AS [Report_Start_DATE],
CONVERT(VARCHAR(10),CdsReportPeriodEndDate,120) AS [Report_End_DATE],
CONVERT(VARCHAR(10),cdsactivitydate,120) AS [Activity_Date],
-- Updates Prime Recipients for Null & Old Pct_Codes
Case
When CdsPrimeRecipient...
May 28, 2015 at 7:25 am
AswinKrishnan (5/28/2015)
How can we identify the Date Format from a String in SQL Server.
I might get an input from external source as "MM-DD-YYYY" or "DD-MM-YYYY" or "YYYY-MM-DD" or "YYYY-DD-MM",...
May 28, 2015 at 7:05 am
dale_berta (5/28/2015)
0022, ", is QUOTATION MARK.
0027, ', is APOSTROPHE.
The other two you mentioned are 2017 and 2018, LEFT and...
May 28, 2015 at 6:51 am
Richard Warr (5/27/2015)
' is an apostrophe, and
" is a quote.
Confusion sets in...
May 27, 2015 at 8:45 am
devsql123 (5/27/2015)
I want to change Set clause of Update Statement dynamically based on some condition.
Basically i have 2 Update statments having same FROM clause and same JOIN clause.
Only diff...
May 27, 2015 at 7:19 am
Brandie Tarvin (5/27/2015)
Just curious how many people on The Thread are World Cup fans. Cause... STUFF and MORE STUFF.And I was wondering how y'all felt about it.
I am just surprised...
May 27, 2015 at 7:12 am
Luis Cazares (5/26/2015)
May 26, 2015 at 8:51 am
Lynn Pettis (5/22/2015)
I'm thinking the problem is using " (double quotes) in building your string and probably not the correct number of ' (single quotes).
Oh boy...looking back at my post...
May 22, 2015 at 2:28 pm
SQL-DBA-01 (5/22/2015)
I'm automating some of the TDE stuff and while doing so stuck somewhere. I'm unable to use section [ENCRYPTION BY PASSWORD = ''"' + @db_pswd + '"'' ]...
May 22, 2015 at 1:11 pm
Adrian Sims-154382 (5/22/2015)
I have a 3rd party product that has tables and object within the dbo schema of a given database, and I would like to set up dedicated AS400...
May 22, 2015 at 12:11 pm
Thanks for the table. Unfortunately you didn't post the select statement, the insert statement, the source table ddl or the sample data. From what you posted it sounds like maybe...
May 22, 2015 at 9:06 am
cunningham (5/21/2015)
soooo this is where you lot go to blow off steam!
Yes indeed!!! Welcome to the "water cooler" commonly referred to as "the thread". 😀
May 21, 2015 at 7:44 am
You still haven't posted the ddl for the base tables here so we can build this on our systems to test with. Your code now is further from accomplishing the...
May 21, 2015 at 7:43 am
Hi and welcome to the forums. Your trigger doesn't make much sense to me. You have specified it to be a trigger for insert, update and delete. However, it doesn't...
May 20, 2015 at 7:58 am
newbieuser (5/19/2015)
May 19, 2015 at 2:37 pm
Viewing 15 posts - 2,821 through 2,835 (of 15,381 total)