Viewing 15 posts - 1,531 through 1,545 (of 2,649 total)
Please stop posting the same question over and over.
you were given the answer before on https://www.sqlservercentral.com/forums/topic/the-tabular-view-feature-is-not-included-in-the-64-bit-standard-edition-of - and as you seem not to like the answer please go and read...
April 25, 2020 at 2:40 pm
That's not really the best way to do it as you have multiple "joins" to the same table when you can do it with a single one
try like this
April 24, 2020 at 10:00 pm
Hi Frederico Fonseca,
Yes, that might change the collation of my database, but not that of TEMPDB. So any query using a #temp table would need to be checked (and...
April 24, 2020 at 1:18 pm
Henrik - you can change its collation - just not as easy as doing it on Prem
see https://www.mssqltips.com/sqlservertip/5530/how-to-change-an-azure-sql-database-collation/
April 24, 2020 at 7:54 am
could you please explain in more detail the layout of your DV with regards to this transaction data, both hub, links and sats - having their DDL including indexes would...
April 23, 2020 at 9:22 pm
you should have the indexes that are required to support your queries - having them as Columnstore or not will depend on your needs and on your testing that have...
April 22, 2020 at 6:19 pm
SELECT REPLACE(oldvalue,'*', replicate('0', 12 - len(t.oldvalue) + 1)) newvalue
from (values
('ABC*1')
...
April 22, 2020 at 3:06 pm
another one - just weeding out options as not quite sure of what the issue is.
EXEC xp_logininfo 'xxx'
and another option - it is possible that the user is setup on...
April 21, 2020 at 5:25 pm
its now necessarily as you think - just by looking at the image you have tasks running in parallel - maybe it was just timing of when you took the...
April 21, 2020 at 3:01 pm
the way you have it setup it should execute them in parallel - except potentially the drop of indexes as that locks system tables - but that should be fast...
April 21, 2020 at 2:45 pm
should I/Can I be creating a Columnstore index on such compressed table? Will it even work?
Test it - easy enough for you to create a table with normal compression and...
April 21, 2020 at 2:34 pm
you didn't tell us what you mean by "the data returns instantaneously" - if by this you mean it returns to your SSMS grid then do not use this as...
April 21, 2020 at 11:55 am
can you give the output of these please.
select containment_desc
from sys.databases
where name = db_name()
select type_desc
, is_disabled
, default_database_name
from sys.server_principals
where name = 'xxxx' -- replace with login...
April 21, 2020 at 11:37 am
try the following code - without changes other than the login name and give us the output
if (original_login() <> suser_name())
begin
print 'revert'
...
April 21, 2020 at 5:32 am
potentially something similar to this
select customerid
, max(case when [Data Entry] = 'entry' then [Data Entry] else null end) as [Data Entry]
...
April 20, 2020 at 7:59 pm
Viewing 15 posts - 1,531 through 1,545 (of 2,649 total)