Viewing 15 posts - 991 through 1,005 (of 2,649 total)
Would there be any advantage(speed) to strip my backup even though my drive that I'm backing up to is part of a San where it's not on it own...
December 10, 2021 at 1:49 pm
reading the manual is normally advisable as it does contain the information one is looking most of the of the times.
December 6, 2021 at 11:24 pm
using columnstore is potentially one of your other issues - while it is GREAT for space saving and for aggregation style SQL it can perform badly for plain joins to...
December 6, 2021 at 9:31 am
Jeff - I do believe that the sample supplied with 2 digits and "." as separator is only how its displayed and not how its stored.
December 6, 2021 at 8:20 am
I would query why that is a requirement - in a properly designed cube a good analysis tool that can accomplished that within the tool (SSAS or similar) using their...
December 5, 2021 at 11:00 pm
and do be aware that Data Masking in SQL server can be broken very easily if you can do queries directly to the DB - so avoid at all cost.
December 2, 2021 at 6:47 pm
you can download the older versions - see https://visualstudio.microsoft.com/vs/older-downloads/
December 2, 2021 at 10:52 am
note that limit is per database - nothing preventing the developer to have 20 databases - and the big tables each on their own databases, and a master/driver database with...
December 1, 2021 at 7:26 pm
adding to this - the more complex queries are also using tables without ANY index at all - so lots of table scans (HEAPS to be more precise) - so...
December 1, 2021 at 4:54 pm
do you mind running this again and ensuring that the dbname is correct
select snapshot_isolation_state
, snapshot_isolation_state_desc
, is_read_committed_snapshot_on
...
November 29, 2021 at 12:41 pm
kindly keep this to a single thread - you have 3 threads all around the same issue for no real reason.
also a search on google immediately gives a results that...
November 27, 2021 at 11:08 pm
Here's the next thing that could be a possibility... Run this code in the database where the table is at.
SELECT is_read_committed_snapshot_on
FROM sys.databases...
November 24, 2021 at 6:28 am
can you run the following - sp_spaceuses sometimes reports wrong sizes
select t.NAME as tablename
, s.Name as schemaname
,...
November 22, 2021 at 10:01 pm
no clustered index on that table? or columnstore?
if not then it is a a heap so see what the resulting size is after you issue "alter table [dbo].[SIData_222222_88_20211103_1436] rebuild"
if it does...
November 22, 2021 at 6:25 pm
can be lots of things
...
November 21, 2021 at 3:47 pm
Viewing 15 posts - 991 through 1,005 (of 2,649 total)