Viewing 15 posts - 436 through 450 (of 1,409 total)
I was in doubt, because I found it difficult to get the intention of the question (perhaps because I'm not native English speaking). Did I need to take the question...
June 6, 2014 at 3:33 am
Open the properties of the LOGIN and look at the specified default database. Does this database exists?
According to the error message you have specified a non-existing database, the database is...
June 6, 2014 at 2:50 am
Yes, shrinking is not advisable, but I can see the need in some cases...
The performance of shrinking is depending on the allocation within the file itself. It's beyond my knowledge...
June 6, 2014 at 2:35 am
The best way is to script out the logins at the source instance and execute the generated script at the target instance. You can include the original SID's and the...
June 5, 2014 at 8:12 am
Hi, this sounds like a double-hop issue. You can read about it on http://www.mssqltips.com/sqlservertip/2312/understanding-when-sql-server-kerberos-delegation-is-needed/
When you search the internet you can find a lot of information about it.
June 5, 2014 at 6:22 am
We experienced the same when installing SQL2008 with the GUI on a Windows 2008R2 cluster. We didn't find a solution and ended up installing SQL using the unattended setup.
June 5, 2014 at 6:17 am
Koen Verbeeck (6/5/2014)
Please, can you put a little effort in formatting your code?This is really awful to read.
+1 !!
And format your code is so easy! You only need to copy/past...
June 5, 2014 at 6:13 am
The file extention MPMP is not a default SQL extention, so probably it is generated by some other process. Can you see who created (is owner of) these files?
Perhaps a...
June 4, 2014 at 6:06 am
You have to write some code to loop through and execute the generated commands. Because you want this to be initiated from 'registered servers' it is a bit more complicated,...
June 4, 2014 at 4:05 am
You have several spaces in the folder structure. Do they actually exist in the folder name?
Copy the folder structure from the code and paste it in the address of an...
June 3, 2014 at 2:14 am
Because you already have some logic in the script, why not apply some extra logic to determine the query you need:
declare @leveltype varchar(100)
set @leveltype = '1,2,3'
IF @leveltype = ''
select *
from...
June 2, 2014 at 6:43 am
The code below generates the commands to change the PAGE_VERIFY option. The CASE statements in the SELECT part is used to determine the correct option depending on the compatibility level...
June 2, 2014 at 6:37 am
rhythmk (5/19/2014)
Nice question.One has to read the word optimal carefully 🙂Thanks for question.
And read the Select two part carefully 😀
May 19, 2014 at 2:10 am
This type of error usually occurs when the default database defined for the login is not accessible by this login (either no permission or does not exist)
May 12, 2014 at 6:29 am
gbritton1 (5/12/2014)
May 12, 2014 at 6:04 am
Viewing 15 posts - 436 through 450 (of 1,409 total)