Viewing 15 posts - 1 through 15 (of 89 total)
Thanks Johan, Unfortunately, the eXtended Events did not captured the query that I ran. I tried looking for my query syntax on the DBA_LongRunningQueries.xel but to no avail. These are...
September 11, 2024 at 5:38 pm
Thank you it works.
January 29, 2020 at 4:41 pm
last question. I tried to make it an update statement but got an error below. Any ideas how to fix this?
Thanks
Update T = T.col3 + ISNULL(LEAD(col1) OVER(PARTITION BY T.DocName ORDER...
January 29, 2020 at 3:33 pm
Jonathan,
Actually your code works. I did not mention there is another parent row and when I exclude the parent row it works. Thanks so much for your help.
January 29, 2020 at 3:15 pm
Jonathan,
Please see my data below. Also in the attachment with pipe delimited.
January 29, 2020 at 2:53 pm
I meant your code did not return any errors but the output result is the same where I am before below
January 29, 2020 at 2:24 pm
Plucked in your new code. I am still getting the same result.
January 29, 2020 at 1:54 pm
Jonathan,
You code works for hardcoded values. I replaced the Values with my #Temp1 table. I am getting an error. Any ideas?
SELECT T.Id, T.DocName, T.col1, T.col2,
T.col3 +ISNULL(LEAD(col1) OVER (PARTITION BY T.DocName...
January 29, 2020 at 1:27 pm
Hi Jonathan,
Thanks for your input but your code will not work for me. This is because the I have thousand of files that I am importing. Thus hard coded the...
January 29, 2020 at 3:51 am
Thanks Erland.
November 15, 2019 at 5:28 pm
My thought is to import the Word and PDF into a string vardinary(max) or nvarchar(max) data type and run data iteration trim and replace and insert into the allocated table...
November 15, 2019 at 5:14 pm
Hi Erland,
I like to give an example with the link below under the section "CURRENT ASSET LINK" supposed to be a Word document. How can I parse the data First...
November 15, 2019 at 3:42 pm
Thank you Erland for your advice. I have not picked up the project yet but this is the first time I heard people who use Java script to import word...
November 14, 2019 at 10:42 pm
Thanks for your response. The purpose of the word document import into SQL server is to parse the data into a table and export into excel. The current framework was...
November 14, 2019 at 8:14 pm
That is correct. I want to store the content of the Word and PDF in vardinary into SQL server. Also, If can do some parsing using Java script as well....
November 13, 2019 at 11:10 pm
Viewing 15 posts - 1 through 15 (of 89 total)