Viewing 15 posts - 91 through 105 (of 2,695 total)
you read them in SQL Server as any other .xel file (or through powershell - google it)
March 6, 2025 at 8:43 am
folders like this should be owned by a group containing the domain administrators - and then these can grant required permissions to local administrators and other accounts as needed
March 5, 2025 at 12:54 am
starting to get annoyed with this user https://www.sqlservercentral.com/forums/user/srinivasdba19
been posting scripts (and not his own for sure) as reply to a whole bunch of threads - some of the scripts are...
March 1, 2025 at 7:58 pm
doesn't the hotfix work?
February 27, 2025 at 3:28 pm
'{000C1B7A-164A-4243-9952-01BC82236EB0}' is not the same as '000C1B7A-164A-4243-9952-01BC82236EB0'
February 26, 2025 at 10:57 am
some changes on forums are acceptable - SQL ServerCentral change from old format was a "soft" change and not a "I will never use this again" change.
I used to be...
February 24, 2025 at 2:01 pm
issue with using a "specific login" is that a sysadmin can execute as any login - so it will still not prevent a DBA from doing it which was the...
February 17, 2025 at 9:28 am
you can't - and if you don't trust your dba's not to use it then change the process of accessing that linked server so that it is on a black...
February 13, 2025 at 11:27 pm
bump for visibility.
and speed differences may be to do with settings on ssms vs vb.net
February 6, 2025 at 10:54 am
it really shows a lack of understanding of how SSIS Catalog deployment works, even within VS (which does invoke a command line tool to deploy).
everything can be deployed from CI/CD...
February 4, 2025 at 8:52 am
what happens if you move that SP to another container, being executed after the other ones?
and most times its some settings on your sp's or locking between SP's - and...
January 31, 2025 at 10:17 pm
the best, and probably correct, way is to use your visual studio (or vs code) solution (you do have one don't you!!!) and its schema compare.
while there are 2 ways...
January 30, 2025 at 11:36 pm
doing a select * in SSMS will also be impacted by network speed between workstation and server, workstation processor (and available cpu %), memory, disk speed, and SSMS settings.
if you...
January 30, 2025 at 10:10 am
SELECT DISTINCT tp.client_id AS Member_ID
, tp.PaidDate AS Paid_Date
, tp.DOS
FROM #ins_temp tp
WHERE (@dateChoice = 'Paid_Date' and...
January 24, 2025 at 4:14 pm
This does not bring back any records unfortunately:
SELECT DISTINCT tp.client_id AS Member_ID
, tp.PaidDate AS Paid_Date
, tp.DOS
FROM #ins_temp tp
WHERE (@dateChoice = 'Paid_Date' and tp.PaidDate BETWEEN @startDate AND...
January 24, 2025 at 3:51 pm
Viewing 15 posts - 91 through 105 (of 2,695 total)