Viewing 15 posts - 46 through 60 (of 417 total)
I assume the source file does not contain a processed_flag or processed_date column. I just ran a quick bulk insert test and when I added an extra column to the...
March 11, 2024 at 3:58 pm
I would look at some tutorials and script it yourself. This link has an example of a partition scheme based on months, but it would be easy to modify for...
March 7, 2024 at 7:49 pm
Do either of these give you what you need?
--ONE ROW PER NAME WITH COUNT
SELECT firstlastmerged,
COUNT(firstlastmerged) AS Cnt
FROM dbo.YourTable
GROUP...
March 6, 2024 at 7:06 pm
what we saw before the processing started was ssas using about 10 gig for nothing specific that we know about. .
Tabular models are loaded into memory when the instance...
February 22, 2024 at 9:39 pm
It looks like it runs the query to see if any data will be returned in order to make @@ROWCOUNT >0. Either set a variable to the count, or just...
February 22, 2024 at 9:04 pm
My understanding is that there is a 16 GB limit for RAM per tabular instance.
If the total used by all databases is 5GB you should be fine. I...
February 22, 2024 at 4:33 pm
I believe SQL Server Standard limits a tabular instance to 16 GB. It sounds like you may be getting close if you have seen it max out around 12. Is...
February 21, 2024 at 10:48 pm
It's been a long time since I had to deal with this problem, but I think it helped to run a process clear before process data. According to the link...
February 20, 2024 at 11:19 pm
I imagine the suggestion will be to simply get rid of the index reorg task, however, I think the maintenance plan is essentially an SSIS package. You may be able...
February 15, 2024 at 10:49 pm
I found that a simple example generates the error above if you use CHAR(13) alone as a line break (which was in my suggested solution). Scott's solution used CHAR(13) +...
February 13, 2024 at 7:37 pm
Did you try executing the code as well as printing? Print can only return 8k so it will truncate the variable if it's longer, but you can execute dynamic sql...
February 12, 2024 at 8:07 pm
Here's a rough go at it. It seems to work in my environment, but any really wide table will be a problem for PRINT. I would not blindly run a...
February 9, 2024 at 7:50 pm
Have tried the Microsoft Connector for Oracle? I found it worked right away, no need for an Oracle client or tnsnames. In the past I have failed miserably in trying...
February 9, 2024 at 4:14 pm
Hi, thanks for the advice. The database in question is interesting in the sense that its a financial number storing database whose values are rebuilt (ie lots of calculations...
January 12, 2024 at 4:58 pm
If the ETL is set to continue on failure, it should still log errors to the SSIS catalog (if you're using it) so they should be possible to query.
I would...
January 11, 2024 at 5:21 pm
Viewing 15 posts - 46 through 60 (of 417 total)