Viewing 15 posts - 736 through 750 (of 2,356 total)
Quick question, all. Which do you prefer to use... CyberArk or Hashicorp Vault?
They do not really do the same thing, right?
I think Vault is a password safe, and CyberArk...
August 17, 2021 at 1:21 pm
If I misunderstood and you want the alarm noticiation flag to control the selection criteria, then it's best to use two separate queries instead of trying to cram everything...
August 12, 2021 at 8:05 pm
If you have created an availability group, then you would typically be connecting to the listener, not the individual server.
You are not going to be able to name more than...
August 12, 2021 at 5:21 pm
If you are connecting to the AG with the linked server, then you simply connect to the listener. If the AG is connecting to other servers, then you set up...
August 12, 2021 at 5:16 pm
Did you check out this thread?
https://www.sqlservercentral.com/forums/topic/memory-optimized-tables-cross-db-access
August 9, 2021 at 6:36 pm
Make that user sysadmin, and see what happens.
If it runs, then it's something with permissions,
If it fails, then it's something with the configuration of SSRS/SSAS
August 9, 2021 at 6:28 pm
Thanks for the feedback, Grant. I am concerned. While I wouldn't expect such a thing to be "radical" in a test and development environment, seeing "some" thrash...
August 9, 2021 at 4:07 pm
Speaking of Full Stack Dev job adverts, what does this one say to you?
At more than passing ability in most of these areas, this says $150k a year.
Not...
August 9, 2021 at 3:15 pm
Well, it seems like you would need the max date/time for the checkin, and the same thing for the checkout on a per user basis.
If the check in date/time is...
August 5, 2021 at 5:01 pm
wish we could identify these types even before they are allowed to post - would save a bit of hassle for many of us here
https://www.sqlservercentral.com/forums/topic/import-csv-data-into-existing-tables
This is the same person...
August 5, 2021 at 12:19 pm
This may give you what you want, or get you close.
SELECT
MAX(QS.last_execution_time) LastExecution,
COUNT(*) ExecutionCount,
DB_NAME(ST.dbid) DatabaseName,
OBJECT_SCHEMA_NAME(ST.objectid, dbid) as [Schema_Name],
...
August 4, 2021 at 7:27 pm
I'd go with either Extended Events (much less overhead than Trace AND can be filtered on capture which Trace can't do) or Query Store. If you want to capture...
August 4, 2021 at 1:20 pm
A single column with all of the parameters? Could be bad idea, potentially lots of overhead, depending on how it's done.
.
The parms and values where concatenated into a string...
August 3, 2021 at 9:17 pm
Add code to the start of the proc to log to table. While you're at it, you might as well log all the parameter values as well,...
August 3, 2021 at 8:13 pm
Add code to the start of the proc to log to table. While you're at it, you might as well log all the parameter values as well, if you...
August 3, 2021 at 7:47 pm
Viewing 15 posts - 736 through 750 (of 2,356 total)