Viewing 15 posts - 3,766 through 3,780 (of 5,111 total)
May 5, 2017 at 4:59 am
Use a Derived Column Transformation in your dataflow, use UPPER as part of your expression and replace the column instead of adding a new one.
May 5, 2017 at 2:41 am
Just to check, are you entering "Jørgen Ørum <jørgen@ærø.dk>" as the email address? You only need to enter the email address, separated by semi colons. For example: jørgen@ærø.dk;jeroen@ærø.dk.
May 5, 2017 at 2:17 am
To do this, you would need to use dynamic SQL, such as:DECLARE @Field_suffix char(1);
DECLARE @sql varchar(MAX);
SET @Field_suffix = '1';
SET @sql = 'SELECT A.REG_NAME,val_alpha'...
May 5, 2017 at 2:09 am
Fixed your formatting for you...SELECT count(*),
(CASE WHEN wfstate =0 THEN 'Submitted'
WHEN wfstate =30 THEN 'Duplicates'
...
May 4, 2017 at 8:19 am
I'd hazard a guess that your dates are in the format 'd/M/yyyy' (for example 4/5/2017 (4 May 2017), 14/4/2017 (14 April 2017), 5/12/2016 (5 December 2016)) , and likely your...
May 4, 2017 at 7:14 am
Duplicate of topic: https://www.sqlservercentral.com/Forums/1874393/error-1418-when-I-start-database-mirroring
May 4, 2017 at 4:09 am
Beatrix Kiddo - Thursday, May 4, 2017 3:09 AMStack Overflow is pretty much unusable.
I', really not a fan of it either....
May 4, 2017 at 3:18 am
Something like this?CREATE TABLE #FilePaths (FilePath varchar(500));
GO
INSERT INTO #FilePaths
VALUES
('C:\ABC\DEF\BANK'),
('C:\ABC\DEF\ACCOUNTS'),
('C:\DEF\ABC\EXPENSE'),
('C:\ZYX\WVU\INVOICES');
GO
SELECT *
FROM #FilePaths;
May 4, 2017 at 2:03 am
First thing we probably really want is what your SQL for your procedure is. At the moment we have a "works like this" statement, but that doesn't necessarily tell us...
May 4, 2017 at 1:44 am
May 3, 2017 at 4:39 pm
Hazarding a guess here (sorry for formatting, SSC still hates my paste and I can't be bothered to fix it). I'll admit,this does it in two passes, not great, but...
May 3, 2017 at 11:09 am
mcfarlandparkway - Wednesday, May 3, 2017 10:29 AMFirst US person is the one who entered expense first.
How do you know who entered...
May 3, 2017 at 10:37 am
the only issue comes with if you can modify the schema on the SQL side...
May 3, 2017 at 9:40 am
Viewing 15 posts - 3,766 through 3,780 (of 5,111 total)