Viewing 15 posts - 46 through 60 (of 144 total)
As a pure guess, I am thinking the UI is issuing a full delete of a list as a way around trying to figure out how many PersonIDs had been...
August 8, 2019 at 4:59 pm
No disrespect intended, but the commands shown only generate the commands to change the collations. Did you run the generated commands?
August 8, 2019 at 4:53 pm
The LIKE approach works for me. Do you get bad results from this (note, make sure no new-line characters invade the LIKE string):
drop table #temp
create table #temp
(col1...
July 29, 2019 at 7:57 pm
Try to create this in a view to start with. Computed columns can not be used in the definition of other computed columns, so that will cause you some problems...
July 23, 2019 at 3:36 pm
Things to check here;
July 19, 2019 at 7:15 pm
Better than looking at the file list would be to look at the backup tables in the msdb database.
use msdb;
select bs.Database_name, bs.user_name, bs.backup_start_date, bs.type, bmf.physical_device_name
from backupset bs...
July 11, 2019 at 6:11 pm
If it has a different database_id, how are you certain it should be associated with database_id = 15?
I see entries for the System Resource Database, but that is ID 32767. ...
July 10, 2019 at 5:47 pm
Next time this happens, have a look at the wait_type and/or wait_resource fields in sys.dm_exec_requests. That may give you a few more clues as to what is going on. The...
July 8, 2019 at 8:24 pm
If the server is crashing, you should (hopefully) be able to get some sort of error from the errorlog. When you run the following:
xp_readerrorlog 1
Do the final few lines look...
June 26, 2019 at 6:31 pm
Instead of deadlocks, this sounds like regular lock contention. Have a look at the output of sp_who2 when this happens, and check the BlkBy (Blocked By) column. If there are...
June 24, 2019 at 8:17 pm
My first thought is that the Z:\ drive is a user mapped drive, which the server has no access to. Can you use the fully qualified name (\\server\share\folder\filename)?
June 24, 2019 at 8:15 pm
I do a lot of code reviews, so I usually rely on saying "It is a cross between a building inspector, and a teacher"
May 24, 2019 at 7:14 pm
You can use an outer join to a fabricated "table" of months:
with months (mon)
as
(select mon
from (values (1), (2), (3), (4), (5), (6), (7), (8), (9), (10),...
May 15, 2019 at 5:31 pm
I usually use a hex editor for this sort of thing. In general the process would be
May 15, 2019 at 5:24 pm
My first guess would be firewall rules. Turn on monitoring at the server side, and see if there are any dropped packets. Evaluate what ports these are being dropped on,...
April 29, 2019 at 3:03 pm
Viewing 15 posts - 46 through 60 (of 144 total)