Viewing 15 posts - 601 through 615 (of 2,694 total)
update will take longer but none are fast - see https://www.sqlservercentral.com/steps/stairway-to-columnstore-indexes-level-6-updating-and-deleting-data-in-a-columnstore-index
both will require index reorg to get ride of the "deleted rows" from the table.
for large etl like this one...
March 27, 2023 at 12:07 pm
following up on Phil answer - go and read these 2 links.
https://www.sqlservercentral.com/articles/how-to-post-performance-problems-1
and as an IRL example of what Phil is asking for - you Can't build a car if the...
March 26, 2023 at 1:13 pm
would be good if you could supply the full code of all required functions - as well as part of what the invocation of it is - even the invocation...
March 25, 2023 at 11:37 am
code above formatted in case anyone interested in seeing what it it
with failedjobs
as
(select serverproperty('Servername') as ServerName
, sysjobhist.job_id
...
March 25, 2023 at 10:24 am
thanks for feedback.
as that does not seem to work I now ask if the calling of the main function
SELECT * FROM
dbo.fn_GetMatchingItemsForGlobalSearchSOC('111889,111891,111899','12181', 3)
can be change so that the...
March 25, 2023 at 10:12 am
insert into a temp table , then select from temp table and insert into final, and on this select you add your required date column
March 24, 2023 at 4:29 pm
you are missing the definition of "fn_GetFullTextSearchConditionFromUserInput"
looks like this function is called upon input from user - not based on joins to other tables, but straight as you have on...
March 23, 2023 at 11:25 pm
if you use SSIS Catalog then you can specify permission at a project level and at a folder level.
other permissions can be set at ssisdb level but those would...
March 21, 2023 at 6:19 pm
did you try and change it from TVF to ITVF? that can make a significant difference to most queries.
even if you don't wish to put the whole code it may...
March 19, 2023 at 9:40 am
you need to have the order by on the Dataflow Source sql - not where you insert into the table as per above.
March 18, 2023 at 7:58 am
when generating csv files in SSIS (which I avoid every time I can - powershell easier for it) I normally do the conversion/formatting on the extract sql so that for...
March 18, 2023 at 1:02 am
see if this link helps you https://stackoverflow.com/questions/57278013/using-javascriptserializer-to-deserialize-json-c-sharp-type-not-supported-for
March 17, 2023 at 1:58 pm
what errors you getting? and did you try debugging the code in case the error you get does not reflect the true error?
March 17, 2023 at 11:22 am
answer in my opinion is incorrect (or question badly formed) - see https://learn.microsoft.com/en-us/sql/database-engine/install-windows/supported-version-and-edition-upgrades-2022?view=sql-server-ver16, Migrate to SQL Server 2022 (16.x).
one thing is the "from" the other is the "after"
March 17, 2023 at 7:15 am
just to be sure you are indeed producing a Valid CSV
when you define your output file do you have the "text qualifier" set to " (double quote)?
on example below it...
March 17, 2023 at 7:04 am
Viewing 15 posts - 601 through 615 (of 2,694 total)