Viewing 15 posts - 376 through 390 (of 7,466 total)
Thank you for the feedback.
As always, checking and double checking, stepping back to get a broader view what's going on and then working back to the issue is key!
June 15, 2023 at 5:47 am
did you also try to use just the group name (without the domain information) ?
June 14, 2023 at 7:15 am
On a single instance SQL Server 2022 installation, you can find bcp.exe overhere: "C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn"
With multiple instances, it may be needed to actually provide the correct path...
June 13, 2023 at 6:05 am
You can only define and use one port for mirroring and always on (combined ! )
June 12, 2023 at 6:51 am
What error are you receiving?
June 12, 2023 at 6:49 am
How large is your (test) table?
What about indexes?
Please post DDL
June 8, 2023 at 7:07 am
A trigger is always handled in the scope of one transaction.
Cascading triggers ( as you implemented ) are handled in the scope of the same transaction.
So to get around your...
June 2, 2023 at 11:03 am
Homework, school assignment, ... try chat gpt
May 29, 2023 at 8:52 pm
enable query store and get a good view onto what is going on.
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 !
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
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...
May 16, 2023 at 12:36 pm
...
AND (
(D.CLS LIKE '%'+ U.IND_TYPE '%'
AND D.CLS_OPERATOR = 'IN'
)
...
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/
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...
May 12, 2023 at 5:45 am
Viewing 15 posts - 376 through 390 (of 7,466 total)