Viewing 15 posts - 1,591 through 1,605 (of 2,694 total)
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
yup.. you do need to go and learn the basics of T-SQL.
remove all "GO" statements that are after the create procedure.
But as Brian mentioned why this? once created the indexes...
April 17, 2020 at 5:51 pm
if I understand what you are trying to say it seems that you don't know how to create a stored procedure
so instead of putting a few snippets from your code...
April 17, 2020 at 5:39 pm
and what is your issue?
what you said does not give us any detail other than what you intend on doing.
April 17, 2020 at 4:01 pm
Visual Studio is 32 bit - you need to install ACE x32 in order to be able to create new SSIS packages using it.
April 16, 2020 at 7:36 pm
We just discovered another process that is having a similar issue. It appears to be where the field size in the "source" table (which contains the non-clustered columnstore index)...
April 16, 2020 at 2:13 pm
As Grant mentioned in order to achieve a similar functionality like Oracle you need to have your database set with Read Committed Snapshot (RCSI).
Basically with RCSI your readers will not...
April 16, 2020 at 6:26 am
did you bother reading my reply?
April 14, 2020 at 4:31 pm
Viewing 15 posts - 1,591 through 1,605 (of 2,694 total)