Viewing 15 posts - 1 through 15 (of 179 total)
Well restarting the entire server seems to have done the trick...
February 16, 2024 at 4:07 pm
Ok found solution to my own question, using SSIS
1 Import all relevanten Database names
select *
from $SYSTEM.DBSCHEMA_CATALOGS
2 Use a loop container to edit the connection string and replace...
January 20, 2023 at 9:01 am
Funny timing.
I am leaving my current employer after 4 years (first 4 years at work after studying).
I work/worked there as the person responisble for the ETL and the SSAS Multidimensional...
June 29, 2022 at 4:13 am
Ahoi,
for future posts:
for current post:
The thing ur looking for is probably Pivot/Unpivot from SQL Server, theres examples of how to use it on google
June 7, 2022 at 12:52 pm
Duplicate Post i made because i couldnt see my own post/page 2 option.
Please ignore
June 3, 2022 at 9:23 am
Why are using this setting: SORT_IN_TEMPDB = OFF?
That's generally a very bad idea overall, esp. for larger indexes.
Not sure, im just using the following which was suggested earlier unless...
June 3, 2022 at 9:15 am
HMHMHMH
Job has been doing fine for the few days i used the dbo.IndexOptimize
Now the job has been stuck for 4 hours on a single index rebuild while the Job previously...
June 3, 2022 at 5:46 am
Ok i am confused, i was replacing my "alter index reorganize" part with the "execution dbo.indexoptimize" within my script that iteratates through the for me relevant tables, job seems to...
May 31, 2022 at 4:49 am
Left a subcription
May 30, 2022 at 4:24 am
Thanks for the reply.
Weird that this is somehow not more public knowledge since the problem seems to be pretty impactful and somehow mentioned "no where" in most (popular) google results.
May 27, 2022 at 8:13 am
I'll let Jeff do some chopping but WHY Reorganize? this should be avoided almost at all costs (very few exceptions)
Not aware of that, also can't seem to find this...
May 27, 2022 at 4:08 am
select id
,name
,no
,sum(no) OVER(PARTITION BY id, name)
from mytable
May 17, 2022 at 4:23 am
You could check the rows that cause the conversion error.
The function returns null if the row fails to cast, so you only get the rows that fail to convert.
May 16, 2022 at 7:50 am
It has been 4 years since i started this topic and joined this forum (boy time flies by in hindsight).
I told my boss i got a new job offer (after...
May 2, 2022 at 5:13 am
[/quote]
Please post the entire code for the delete loop , the CREATE TABLE statement for the table you're deleting from, and all indexes, FKs, and triggers associated with the table...
April 22, 2022 at 5:57 am
Viewing 15 posts - 1 through 15 (of 179 total)