Viewing 15 posts - 1,591 through 1,605 (of 2,701 total)
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
you will most likely need to get your network/windows admins involved - there could be many reasons and none associated with SQL Server itself.
have a look at this google...
April 20, 2020 at 7:05 am
go to tools -> options - > Environment -> international settings.
probably set to "same as Microsoft Windows"
but this should not affect your code - unless you are copying/pasting from SSMS...
April 19, 2020 at 12:10 pm
If you are sysadmin you can't give permissions to yourself - neither do you need it on this case so remove that from your script.
regarding setuser - do not use...
April 19, 2020 at 7:50 am
well.. first link I got when I searched was the one that Oracle themselves supply - so I wonder if you did find it on your googling and did you...
April 17, 2020 at 6:29 pm
did you bother googling? there are a few tools (mostly commercial) including one from Oracle that can either put them on a format you can read or that will...
April 17, 2020 at 6:02 pm
Viewing 15 posts - 1,591 through 1,605 (of 2,701 total)