Viewing 15 posts - 2,041 through 2,055 (of 7,191 total)
If you make the change in SQL Server Configuration Manager, all the permissions will be assigned automagically.
John
January 10, 2017 at 9:55 am
If your database is 500MB, then the ideal memory grant should be about 582776856 bytes, not KB. I don't know what's going on there. How much memory do...
January 10, 2017 at 9:40 am
January 10, 2017 at 9:11 am
Do you have a third-party monitoring product such as Solarwinds or SQLMonitor? If so, you should be able to get the information from there? If you don't, do...
January 10, 2017 at 8:29 am
(1) Yes
(2) No, except as in (4) below
(3) No, unless that account runs any other services on the same computer or another computer
(4) Yes. I'm not sure whether it...
January 10, 2017 at 5:02 am
Go to a command prompt on the server (or use xp_ cmdshell) and type [font="Courier New"]net share[/font].
John
January 10, 2017 at 4:16 am
Take a look at this[/url]. Looks like you haven't got your LDAP details all present and in the correct format.
John
January 9, 2017 at 9:18 am
Sam
You can't filter on that, as far as I can tell. Why not filter out the rows you don't need from the destination table instead?
John
January 9, 2017 at 2:05 am
You can install it on its own - it's a separate product from SSMS these days. If you're installing on a PC, it needs to be Windows 10 (or...
January 6, 2017 at 9:55 am
james.h291183 (1/6/2017)
At the moment it is just connecting, I reckon I could do the restore once I am beyond that.
I'm a bit confused as...
January 6, 2017 at 9:20 am
You'll need SQL Server Management Studio (SSMS). Point it at the local version of SQL Server 2016 that you mentioned earlier. When you've connected to that, you'll be...
January 6, 2017 at 8:37 am
james.h291183 (1/6/2017)
It does end .bak, how do you restore a file?
RESTORE. Or use the GUI in SSMS. I recommend the former, since you can tweak it more easily...
January 6, 2017 at 8:21 am
You don't need to loop. I've shown you how to do it without looping. Loops perform badly because rows are inserted one at a time instead of all...
January 6, 2017 at 3:01 am
You can't run without error in SSMS. No way. First, you're missing a chunk of lines in your SELECT INTO statement. Second, your INSERT statements are trying...
January 5, 2017 at 3:05 am
You could create a server-level trigger to fire on the CREATE_DATABASE event. Or you could periodically query sys.databases to see whether any database has a create_date less than a...
January 4, 2017 at 7:59 am
Viewing 15 posts - 2,041 through 2,055 (of 7,191 total)