Viewing 6 posts - 1 through 6 (of 6 total)
lol Me too! But it's got great documentation: https://docs.microsoft.com/en-us/sql/t-sql/queries/contains-transact-sql?view=sql-server-ver15
January 18, 2021 at 9:01 pm
Is the linked server also SQL Server? If it is, you can do it without OPENQUERY(). You just need to use the full name of the table "LINKED_SERVER"."DATABASE"."schema"."TABLE".
And why don't...
January 18, 2021 at 8:54 pm
So, I had to redo my code because a dictionary wouldn't do it. I needed in fact a DataTable object.
I added two variables to my script task (path to the...
January 12, 2021 at 9:03 pm
I followed the ideia given by Mr. Jeffrey Williams and now I have a collection of files in a dictionary ordered by value (date):
using System.Linq;
using System.IO;
using System.Collections.Generic;
public...
January 12, 2021 at 6:50 pm
You're awesome! Thank you very much for your time and helpful comments and for your amazing answer on my question. I was really struggling with this one.
May 11, 2020 at 9:47 pm
Wow! That's it! Sorry If I'm asking too much, but would you mind explaining what you did in the recursive part of the CTE? I'm really surprised by the result....
May 11, 2020 at 8:13 pm
Viewing 6 posts - 1 through 6 (of 6 total)