Viewing 15 posts - 1,576 through 1,590 (of 13,838 total)
The usual protocol in this forum is to leave your original post intact and instead to make another post explaining what the issue was and how you resolved it. This...
February 11, 2022 at 8:44 am
Trimmed down your code a bit. Works for me.
DROP TABLE IF EXISTS dbo.CTR_PanelMembers;
DROP TABLE IF EXISTS dbo.CTRs;
CREATE TABLE dbo.CTRs
(
CTRseqNo INTEGER IDENTITY(1, 1) NOT...
February 10, 2022 at 1:31 pm
Please format your code in future.
As you have not included desired results, I have no idea what you are trying to achieve. But this query runs, at least.
February 10, 2022 at 11:27 am
Single quotes are for chars. Use double quotes for string literals ... it should work.
February 9, 2022 at 10:55 am
Great. How long does it take on your live table?
February 8, 2022 at 4:54 pm
Thanks for posting the link. I did not know about the 1000-row limit.
February 8, 2022 at 10:30 am
Have you tried importing a file into a table containing a column of XML datatype and then querying that? I have no idea whether it will be faster, but might...
February 7, 2022 at 6:50 pm
No need for UNION:
INSERT [PW].[Contract] ([ID],[ProgramID],[PAContractNum],[PAContractAmt],[PAContractStartDate],[PAContractExpirationDate],[CreatedBy],[CreatedOn],[UpdatedBy],[UpdatedOn]) VALUES (1, 8, '15FHBFPP0115', 0.0000, '2014-07-01 00:00:00', '2016-06-30 00:00:00', 'some.person', '2015-02-11 00:00:00', 'some.person', NULL)
,(2, 8, '15FHBFPP0102', 0.0000, '2014-07-01 00:00:00', '2020-06-30...
February 7, 2022 at 4:09 pm
If your Script Task can access the .DTSX file corresponding to 'itself', it could read the variable names from it. Not pretty and not recommended, but not impossible either.
February 7, 2022 at 11:21 am
Your existing method is probably the most practical. I considered other options and came to the same conclusions as you. I suggest that you stay well away from the XML...
February 7, 2022 at 10:18 am
It always happens that way with such "no one made any changes" such things. 😀
It would be nice if you could post the actual code you're talking about so...
February 6, 2022 at 5:24 pm
Please take a look at this and see what you think
DROP TABLE IF EXISTS #LastTimeTankDrained;
CREATE TABLE #LastTimeTankDrained
(
Tank CHAR(2)
,LastDrain INT
...
February 5, 2022 at 4:45 pm
What the data represents is confusing me a little, can you expand on it a little, please?
Take TankDate 1/1/2021 as an example. There are 6 rows, with DrainSeq ranging from...
February 5, 2022 at 12:01 pm
Recovering the missing day's data might not be as difficult as you think. People here will help you.
Approximately how many tables in the database, in total, are likely to contain...
February 4, 2022 at 3:07 pm
I don't think I'll be telling you anything that you don't already know ...
If the 'missing' data exists only on the crashed server, you have to wait until the crashed...
February 4, 2022 at 2:22 pm
Viewing 15 posts - 1,576 through 1,590 (of 13,838 total)