Viewing 15 posts - 1,606 through 1,620 (of 59,082 total)
I've not ever had to do this before. I started at sys.schemas and worked by way up to the other two sys views but, like I said, I've not done...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 8, 2023 at 2:48 am
There are three text files of documentation (about 100K total), including one titled README that tells what the code is supposed to do.
Ah. Got it. Thanks.
You might want to...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 8, 2023 at 12:32 am
First, let me say that I have a grand and genuine appreciation for people that write tools and share them.
I don't, however, have an appreciation for code that doesn't even...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 7, 2023 at 4:30 pm
I've found that most people that want to know how to do this are solving a problem the wrong way. What is the end use of this concatenated string...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 6, 2023 at 5:59 pm
@AG , It was running as legacy. I just took over..I have removed 'Index Maint' from the activities..and also i m not getting any complaints on performance, suggesting ,...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 6, 2023 at 5:45 pm
The 5% / 30% values that where "supposed" best practise are actually a "worst" practise.
BTW and just to be sure... I totally agree with that statement and so do...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 6, 2023 at 3:12 pm
Thanks for the reply Grant. I agree using this data must be used with caution. My goal now is to make the stored results more aware of these situations...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 6, 2023 at 3:05 pm
Thanks, Steve. Thank you for the feedback.
I'd also considered doing the REVERSE thing and using 4 CHARINDEXes, for such a few elements, it's usually faster than a splitter and re-pivoting,...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 6, 2023 at 2:53 pm
Your posted example is great but please Read'n'Heed the article at the first link in my signature line below for future posts for how to post "Readily Consumable" data to...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 6, 2023 at 12:11 am
Just hire a skilled professionals or a company that can do back office task for you and you can just focus on your core operations.
I've found that to be...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 5, 2023 at 7:43 pm
If you're on 2022 then you could use DATE_BUCKET:
WHERE YourDateTimeColumn >= DATE_BUCKET(DAY,1, GETDATE(), CONVERT(datetime,'19000101 16:00:00'))
AND YourDateTimeColumn < DATEADD(DAY, 1, DATE_BUCKET(DAY,1, GETDATE(), CONVERT(datetime,'19000101 16:00:00')))
Another method...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 5, 2023 at 7:36 pm
When doing (upsizing wizard), problems appeared in copy (sql server), so I deleted it and installed it again, and after I tried (import), it worked and the database was...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 5, 2023 at 7:21 pm
onetsql,
Nice link. Thanks.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 5, 2023 at 2:26 pm
I did attempt to import your bacpac, ...
I'll likely never make the attempt on these forums because it's not permanent to this forum. If it goes away, any answer...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 5, 2023 at 2:11 pm
Created a table in such a way, each rowsize is one 8K page.
Now when I execute this
SELECT T.name as 'Table', ix.index_id, ix.[name] AS IndexName, ix.type_desc AS IndexType, [ips].[index_level],...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 5, 2023 at 2:00 pm
Viewing 15 posts - 1,606 through 1,620 (of 59,082 total)