Viewing 15 posts - 721 through 735 (of 7,191 total)
Ben
Are there any indexed views, indexes on computed columns , filtered indexes, query notifications, XML...
June 14, 2018 at 4:36 am
June 13, 2018 at 8:03 am
Nic
I don't think there's a setting whereby you can turn it on or off. All members of the public role have access to the stored procedure, according to...
June 13, 2018 at 2:30 am
Please post the actual execution plans (not estimated) as .sqlplan files for each scenario. If you're inserting 2000 rows into @p3 and then passing that as the argument for @BusinessObjectDataGuids then that's...
June 13, 2018 at 2:07 am
No, that won't work. You could set up an alias, but I think you'd have to do that on every client computer.
John
June 11, 2018 at 6:26 am
Damien
Are you supplying the instance name as well - VIRTUALSERVERNAME\INSTANCENAME?
John
June 11, 2018 at 4:44 am
If you want to put results from dynamic SQL into variables, you need to use sp_executesql instead of EXEC. Or you can take the variables out of the dynamic SQL...
June 8, 2018 at 4:06 am
LindaEwen - Friday, June 8, 2018 1:40 AMComments can actually make debugging a problem harder.
Well yes, just the same as building a...
June 8, 2018 at 2:26 am
Yes, my mistake. You were getting a concatenated list of every value in the table rather than every value in a particular string! Try this:
SELECT
...
June 7, 2018 at 4:34 am
Or, somewhat more scalably:SELECT
c.ID
, c.LIST
, r.Reconcat
FROM #CSV c
CROSS APPLY (
SELECT ',' + s.value
FROM #CSV c
CROSS APPLY STRING_SPLIT(c.LIST,',') s
ORDER...
June 7, 2018 at 4:13 am
NAME = logical_file_name
is not optional (without a hack) when the FILENAME of a...
June 7, 2018 at 2:07 am
So what is your problem here - the syntax error, the conversion error, or the performance? Do you have any control over the code in that view? If so, start...
June 7, 2018 at 1:55 am
I assume that before you detached the database, the tops3_3a.ndf file was on the F drive? I can't think why your CREATE DATABASE statement isn't looking for it where you tell...
June 6, 2018 at 8:48 am
You mean you want to create the same index on the current table as on the new one? You'll need to query sys.indexes to generate the CREATE INDEX DDL.
June 6, 2018 at 5:11 am
Viewing 15 posts - 721 through 735 (of 7,191 total)