Viewing 15 posts - 376 through 390 (of 2,897 total)
I think I prefer SSIS also. I meant scheduled SQL Job, not Windows task.
I saw a suggestion of this in a different thread. Just about to go look at...
May 31, 2017 at 10:21 am
I would like to have a Scheduled task of some kind to export TXT files to a client site, running every morning.
May 31, 2017 at 9:03 am
My "old school" method is search all databases for a character string among objects (SPs, Views...)
exec sp_MSforeachdb 'use [?] select ''?'' as dbName, name as...
May 15, 2017 at 11:05 am
REALISED SP1 Was Not Installed. Installing Now. I hope that prevent a recurrence.
May 10, 2017 at 9:29 am
SQL 2016: Ver 13.0.1601.5
16 Gig of RAM
Here's sp_configure:name minimum maximum config_value run_value
access check cache bucket count 0 65536 0 0
access check cache quota 0 2147483647 0 0
Ad Hoc Distributed Queries 0 1 0 0
affinity I/O mask -2147483648 2147483647 0 0
May 9, 2017 at 6:12 am
Data is just about exactly the same. The Stage database was copied to the new server for testing, when the difference in performance was noticed.
May 8, 2017 at 3:49 pm
I think you and others are correct that it's not Full-text causing the problem, rather the code below, is not making use of the regular indexes.
However on our "Stage"...
May 8, 2017 at 1:30 pm
I believe the denormalization idea was to put all the search data in 1 table, in a separate database, so that the production tables would not be impacted by searching....
May 5, 2017 at 9:58 am
Here's the Actual execution plan from our "Stage"server. Slightly different for some reason, and completes in 2 seconds instead of 30 seconds.
The "Stage" server is an old SQL 2005...
May 5, 2017 at 8:42 am
30 minutes after the failed .NET 3.5 install, I suddenly started getting all the backed up emails.... Very strange.
May 5, 2017 at 7:53 am
So even though I have .NET 4.5, I still need 3.5 for SQL Mail on SQL 2016 ??
I am having the same problem getting mail to work.
Everything else...
May 4, 2017 at 5:30 pm
How do you know the indexes are not being used in the actual execution plan ?
Statistics are set to auto update, and I just ran: update statistics member_search with...
May 4, 2017 at 3:25 pm
Ooops, Actual plan attached
The table does not have frequent inserts, so better to have a lot of indexes on all the possible fields they might search by ?
May 4, 2017 at 12:11 pm
Strange thing is our old "Stage" physical server running SQL 2005 with 4 gig ram, is blazing fast running the same query against a copy of the database.
The...
May 2, 2017 at 3:04 pm
Viewing 15 posts - 376 through 390 (of 2,897 total)