Viewing 15 posts - 421 through 435 (of 7,498 total)
Homework, school assignment, ... try chat gpt
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 29, 2023 at 8:52 pm
enable query store and get a good view onto what is going on.
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 24, 2023 at 6:46 am
check the SQLAgent.out file on your server as well as the ERRORLOG file of the SQL Server !
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 17, 2023 at 1:37 pm
To figure out which CHAR s are in the string ... check this thread https://www.sqlservercentral.com/forums/topic/how-to-remove-special-chars#post-4157818
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 17, 2023 at 1:35 pm
You should ask the author.
There is no benefit writing it like that, could even be a performance downside due to the potential less optimal plan due to the calculation/conversion that...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 16, 2023 at 12:36 pm
...
AND (
(D.CLS LIKE '%'+ U.IND_TYPE '%'
AND D.CLS_OPERATOR = 'IN'
)
...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 16, 2023 at 11:09 am
We use extended events to capture that data.
ref: https://www.brentozar.com/archive/2015/12/tracking-tempdb-growth-using-extended-events/
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 15, 2023 at 11:26 am
100 results is incorrect !
due to your query:
SELECT Description + ' ' FROM RawDataDescriptions FOR XML PATH(''))it produces 1 row !
test it with the data ofย Steves...
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 12, 2023 at 5:45 am
Just to get you back on track ...
How many rows do you expect from your nested select(s) ?
SELECT Description + ' ' FROM RawDataDescriptions FOR XML PATH(''))...Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 11, 2023 at 9:18 am
Have a look at Powershell module DBATools - Copy-DBALogin
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 10, 2023 at 12:18 pm
Did you try to run this NOT using MERGE ?
ref: https://michaeljswart.com/2021/08/what-to-avoid-if-you-want-to-use-merge/
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 10, 2023 at 7:55 am
Did you check the "Restore ... with standby" option ?
BOL ref: RESTORE ... With Standby
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 9, 2023 at 1:01 pm
Default trace holds the information you seek ! ( as long as it did not get cleaned up after a number of rolled forward for the xe files )
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 8, 2023 at 1:29 pm
Have a look at Copy-DBATable of the ( free ) DBATools module in Powershell
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 4, 2023 at 11:47 am
same as with an on-prem Sql server instance
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data and code to get the best help
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution ๐
Who am I ? Sometimes this is me but most of the time this is me
May 4, 2023 at 9:21 am
Viewing 15 posts - 421 through 435 (of 7,498 total)