Viewing 15 posts - 316 through 330 (of 3,543 total)
What is the format of your destination column, the input from Excel is Unicode, if your output is varchar then you will have truncation issues.
For a test a...
September 18, 2017 at 9:34 am
September 6, 2017 at 1:59 am
September 6, 2017 at 1:42 am
Not sure if the best solution
WITH cte AS (
SELECT ROW_NUMBER() OVER (order by Value desc) Sequence_no,
userid,
Value,
DENSE_RANK() over (order by Value desc) as Rank
August 31, 2017 at 3:27 am
Using a Tally table of integers
SET DATEFORMAT DMY;
WITH cte (CertNo,LodgeDate,MatDate,Term,Amount) AS (
SELECT CertNo,LodgeDate,MatDate,Term,Amount
FROM (VALUES (1,CAST('11/02/2017' as date),CAST('11/02/2018' as date),365,5000),
(2,CAST('15/06/2017' as date),CAST('14/09/2017' as date),91,6500),
August 24, 2017 at 7:36 am
August 24, 2017 at 1:37 am
I hate trying to import Excel into SQL Server, for the reasons already stated, this is yet another area where MS does it so badly.
ACE really needs an option like...
August 23, 2017 at 2:17 am
If you're interested, let me know and I'll give you a kickstart by posting...
August 23, 2017 at 1:52 am
It may be possible using Multicast, Aggregate and Derived Column transformations
August 23, 2017 at 1:48 am
Looking at your WHERE clause your query must be joining the two tables which would result in the following possible combinations
New 16 2017-08-01
New 16 NULL
Open ...
August 21, 2017 at 7:23 am
Use built in User!UserID to identify the user and filter the data accordingly
August 18, 2017 at 5:42 am
August 8, 2017 at 6:22 am
August 8, 2017 at 6:06 am
vincentshanecurtis - Monday, August 7, 2017 3:23 PMThanks for the assist.
Your welcome 🙂
Hope it helped.
August 8, 2017 at 1:48 am
Viewing 15 posts - 316 through 330 (of 3,543 total)