Viewing 15 posts - 436 through 450 (of 13,838 total)
I think this better to do step by step first get all custno into temp table and groupid then updating each found, you know way way better you have seen...
April 29, 2024 at 1:28 pm
So my question is how can I add these nuget/dll files into ".SSISDeploymentManifest" and install them automatically when I am deploying the package?
As far as I know, you cannot. Adding the assembly...
April 29, 2024 at 12:46 pm
Your rules are too complex to do this in a single query. Instead, I suggest that you build up the groups one at a time, with one query for every...
April 29, 2024 at 12:43 pm
I don't think you answered this question:
Can the same customer be in more than one group?
This is a very likely scenario if all of the rules are always applied to...
April 29, 2024 at 7:00 am
Also, are the rules you mentioned to be applied in the order they are written, such that if a customer gets assigned to group X, they cannot subsequently also be...
April 27, 2024 at 9:31 am
Regarding your expected results, are you hoping for (GroupId, CustNo)?
April 27, 2024 at 9:29 am
In what form are the 99 serial numbers? Are they in a table?
April 24, 2024 at 8:19 am
Can you craft a SELECT statement which produces the rows you wish to insert? If yes, the rest is easy:
INSERT table (column list)
SELECT column list FROM ...
April 24, 2024 at 8:17 am
Here's an example. Get cutting and pasting and the rest of the columns are done.
DROP TABLE IF EXISTS #UnitProdFinal;
CREATE TABLE #UnitProdFinal
(
YearMonth INT NULL
...
April 23, 2024 at 12:59 pm
i would like to insert transactions at different timestamps of the day randomly , something like
transaction1 - 04/22/2024 9.55am
transaction2 - 04/22/2024 9.59am
transaction3 - 04/22/2024 10.11am
Perhaps 'randomly' is not wholly...
April 23, 2024 at 9:10 am
This should do it:
string fileDate = "2024-03-31";
DateTime someDate = DateTime.ParseExact(fileDate, "yyyy-MM-dd", CultureInfo.InvariantCulture);
April 23, 2024 at 9:02 am
Obviously a hierarchy of some sort. What sort of data do the rows in the table represent?
April 23, 2024 at 8:21 am
Did you refresh the Intellisense local cache? CTRL-SHIFT R
Never heard it called Abscess before!
April 23, 2024 at 8:17 am
Please clarify what you mean by this:
incremental time of the transaction day.
What is that, and how does it differ from 'time'?
April 22, 2024 at 8:00 pm
Including the database should ONLY be done IF you are running a cross-database query.
Otherwise it runs the risk of you running the query against the wrong database.
… Or of...
April 22, 2024 at 2:29 pm
Viewing 15 posts - 436 through 450 (of 13,838 total)