Viewing 15 posts - 3,196 through 3,210 (of 13,874 total)
What do you want to happen if a long-running job is detected?
November 5, 2019 at 3:18 pm
Phil,
It is set to Main.
Thanks
se
OK. I think your problem may be down to the fact that your
public void Main()
should be contained by
public partial class ScriptMain
and not by the Program...
November 4, 2019 at 10:43 pm
What do you want to happen in the event that a request to execute a package is received, but the 'maximum concurrent executions' number, whatever you deem that to be,...
November 4, 2019 at 10:34 pm
If you check the Script Task's properties, what is the EntryPoint set to?
November 4, 2019 at 8:08 pm
October 31, 2019 at 2:49 pm
This is a rather nebulous request.
Which part of this would you like help with?
October 31, 2019 at 2:13 pm
This is close, I think:
DROP TABLE IF EXISTS #SampleData;
CREATE TABLE #SampleData
(
Name VARCHAR(500)
,Timestamp DATETIME
,Result INT
);
INSERT #SampleData
(
...
October 31, 2019 at 2:11 pm
If there is easy solution to convert it in SSIS package then I am also OK with that.
Yes there is. You need a Data Conversion transformation.
October 30, 2019 at 7:23 pm
Please provide your sample data in the form of CREATE TABLE/INSERT statements, if you would like to receive a working solution.
I do not understand what you mean by 'unmatched' here....
October 30, 2019 at 7:18 pm
With > 3,000 points, I assumed that you'd know that a request for sample data does not mean 'please provide a screenshot of a spreadsheet'. That's assuming you are asking...
October 30, 2019 at 3:25 pm
The ONLY way top guarantee the order of the order of the ordering of the result set is to use an ORDER BY.
How about the disorderly orderedness of the...
October 30, 2019 at 1:23 pm
Hello, I'm not sure if I'm even phrasing this correctly, so please excuse lame or novice comments 🙂
Infor: GL Account numbers have a location identifier. For example position 11-13...
October 29, 2019 at 10:35 pm
Seems like a lot of work.
Presumably you have considered:
...
October 29, 2019 at 1:30 pm
Hello. I want to get address a folder like "D:\MOVIE\March 2019" in SQL SERVER DATA TOOLS and zip that folder and then copy it to the desktop after zipping?...
October 29, 2019 at 1:25 pm
i have a variable value that coming from batch file as N and Y
in the package i kept hfcol as string . there is another variable in the package...
October 28, 2019 at 8:49 pm
Viewing 15 posts - 3,196 through 3,210 (of 13,874 total)