Viewing 15 posts - 1 through 15 (of 18 total)
Hi Steve,
It's ADF pipeline.
Source is a table in Sql server having 10 million records appx. Source Table is truncated each day and fresh data is loaded into it. We have...
October 11, 2019 at 5:38 am
January 11, 2018 at 12:37 am
January 9, 2018 at 10:51 am
Thank for your reply.
I was in the same confusion. You removed my confusion
Thanks
Amit
February 22, 2017 at 9:31 pm
I am sorry for the same. I placed the wrong Storage account name. It was a typo error.
November 30, 2016 at 4:17 am
Hi,
All these are generating random values but It's not working for any select statement.
Like
In the select these are generating same random value in the select row for all...
September 1, 2016 at 11:52 pm
Nice one. Really, We don't need to run one by one...........
Thanks
September 1, 2016 at 3:12 am
Hi Adi,
Really you solved my problem in a very short time.
Thanks a lot.
August 31, 2016 at 2:21 am
Hi
i just completed the task using For each Loop and sql task. I created 2 tables.
Create Table ServerNames
(ServerName varchar(20))
Insert ServerNames
values('ProdServer'), ('StagingServer'),('TempServer')
Create Table Table1(
ServerName varchar(20),
Path varchar(50)
)
Insert into Table1 values('ProdServer',''),...
July 4, 2016 at 4:32 am
I also tried something similar..............:-P
select ROW_NUMBER() over(order by id) , name From Table1
union
select ROW_NUMBER() over(order by id) +3, name From Table2
July 2, 2016 at 10:36 am
I hope this is you are expecting........
DECLARE @dbs TABLE ( DBname NVARCHAR(100) )
DECLARE @database varchar(100)
DECLARE @database1 varchar(100)=''
INSERT INTO @dbs
VALUES ( 'A' ),
...
June 29, 2016 at 10:33 pm
It should work I think. Please let me know if need some more changes..
DECLARE @a varchar(20) = 'INV CRT IS15000467 1'
DECLARE @b-2 varchar(20) = 'INV CSH...
June 29, 2016 at 3:49 am
Hope this should work.
DECLARE @a varchar(20) = 'INV CRT IS15000467 1'
DECLARE @b-2 varchar(20) = 'INV CSH IS15000442 10'
select substring(stuff(@a, 1,Charindex(' ',@a, Charindex(' ',@a,0)+1),''),0, Charindex(' ',...
June 29, 2016 at 3:43 am
It shows the below error.
[
The log scan number (61:328:1) passed to log scan in database 'model' is not valid. This error may indicate data corruption or that the log file...
October 18, 2014 at 4:31 am
Thanks for your reply on the services.
I checked the services "SQL Server(MSSQLSERVER) is not running. When I am trying run the same and refresh the settings it again gets stopped...
October 18, 2014 at 4:21 am
Viewing 15 posts - 1 through 15 (of 18 total)