Viewing 15 posts - 1,666 through 1,680 (of 6,679 total)
Thanks I have 20+ years experience. The individual bits run fine.
I have 67 rows go into a cursor (yeah yeah I know) and it only creates 31 rows. Everytime!
The...
August 9, 2020 at 4:21 pm
Using EXISTS:
Select *
From #duplicatesample d
Where Exists (Select *
...
August 6, 2020 at 6:38 pm
The setup we have is as follows:-
Vendor server - server A - SQL2012 Enterprise edition
Reporting server - server B - SQL2016 Enterprise edition
Test server - server C - SQL2016...
August 6, 2020 at 6:08 pm
I am curious - what fine tuning is required? Are you looking to limit the results in some way?
August 6, 2020 at 5:50 pm
Instead of looking at sp_statement_completed and sql_statement_completed you should look at rpc_completed and sql_batch_completed. The events you are currently looking at identify each statement in a stored procedure (sp_statement_completed) or...
August 5, 2020 at 8:22 pm
If you are going to rebuild the server - then you should remove all databases from the AG to that server until it has been rebuilt - and also remove...
August 4, 2020 at 7:53 pm
I don't recall that ever being available in SSMS - but it may have been and just something I never utilized. With that said - check out https://dbatools.io/ - they...
August 4, 2020 at 6:47 pm
There are ways to add code to an Access database that call out to .NET code - which is why I would start there...if you can instantiate the report viewer...
August 2, 2020 at 4:22 pm
This is a SQL Server forum and you have posted Oracle code...are you looking to convert that Oracle code to T-SQL? If so, then something like this:
Declare...
August 2, 2020 at 3:48 pm
I would look at other areas to improve performance - I am able to backup a 2TB+ database in less than an hour using the native backup and compressed setting. ...
August 1, 2020 at 4:03 pm
This is an absolute guess - since you have not provided any sample data to work with...
Select Top 1 With Ties
...
July 31, 2020 at 5:52 pm
I built out a PolyServe cluster at a former site and really liked the solution, especially the storage solution. When we licensed the servers for that environment we licensed it...
July 30, 2020 at 8:31 pm
You might want to consider this company: https://dh2i.com/
As for SSRS - you want to use Enterprise Edition and licensed across all nodes and use the scale-out functionality. You would have...
July 30, 2020 at 7:56 pm
There are some trace flags that if enabled may improve the performance of the integrity checks on earlier editions. I know that as of SQL Server 2016 those trace flags...
July 30, 2020 at 7:37 pm
Viewing 15 posts - 1,666 through 1,680 (of 6,679 total)