Viewing 15 posts - 466 through 480 (of 7,187 total)
Before you do a clustered installation of SQL Server, there has to be a Windows cluster for it to be installed on. I'd be surprised if you can create a...
August 19, 2019 at 10:13 am
Paul
It won't work unless you happen to have no indexes on the columns that you'll be altering. Constraints and indexes on such columns all have to be dropped before you...
August 9, 2019 at 1:28 pm
I don't have the answer to this, but I think it's a "gaps and islands" problem. Try searching for one of the articles that's been written on that.
John
August 8, 2019 at 12:35 pm
I can't answer that without seeing the stored procedure definition... and even then I couldn't be sure. The only way you can know is by testing.
John
August 5, 2019 at 3:59 pm
It runs the DecisionDataExtract stored procedure with the specified arguments.
John
August 5, 2019 at 3:25 pm
Indeed. Make sure he doesn't have access to TEST, if you don't want him connecting directly. Then, create a login on TEST with the permissions he needs. He doesn't need...
August 1, 2019 at 3:47 pm
The users don't need direct access to the remote server in order to connect to it through a linked server... depending on how the linked server is configured. Create a...
August 1, 2019 at 3:39 pm
Perhaps the permissions have been granted explicitly rather than through membership of a built-in role. For example, if a user can change a stored procedure, maybe he has ALTER permission...
August 1, 2019 at 3:35 pm
I really would recommend that you back up to a different folder, rather than giving access to the Administrator area. Something on a different server would be best - provided...
July 24, 2019 at 3:45 pm
What's the error message? I'm thinking it may have nothing to do with the spaces in the path, but more to do with trying to back up to C:\Users\Administrator, which...
July 24, 2019 at 2:25 pm
SET @fileName = '"' + @path + @name + '_' + @fileDate + '.BAK"'
John
Edit: PS - why not use Ola Hallengren's database backup and maintenance suite? There's...
July 24, 2019 at 1:29 pm
Please will you post the whole script? I suspect that you just need to put double quotes at the beginning and end of the path variable when you use it,...
July 24, 2019 at 11:04 am
It's difficult to help you without any table DDL and sample data. However, if you don't want the debit and credit amounts to appear separately in your result set, don't...
July 19, 2019 at 11:07 am
I suspect that it's something to do with having the same name for your subquery (details) as for the underlying table (Details). Try a case-sensitive search and replace and change...
July 15, 2019 at 3:24 pm
Best to avoid making the database single-user in the first place. But if you can't avoid it, you might try this:
ALTER DATABASE MyDatabase SET MULTI_USER WITH ROLLBACK...
July 15, 2019 at 3:12 pm
Viewing 15 posts - 466 through 480 (of 7,187 total)