Viewing 15 posts - 16 through 30 (of 147 total)
Check that the upgrade hasn't enabled Windows Firewall - it is enabled by default.
See this page for details on how to disable it or open specific ports.
windows.microsoft.com/en-gb/windows-8/windows-firewall-from-start-to-finish
Hope this helps.
December 6, 2013 at 3:04 am
Luis Cazares (12/5/2013)
You could as well try the Delimited String Splitter[/url].
Read the article and if you...
December 5, 2013 at 9:50 am
I've been asked before how many times a particular user has accessed objects in a database.
I solved it by creating a database audit specification to capture the SCHEMA_OBJECT_ACCESS_GROUP.
Here's the code...
December 5, 2013 at 9:02 am
http://blogs.msdn.com/b/psssql/archive/2008/01/10/sql-server-2008-resource-governor-questions.aspx
According to this link, the resource governor only limits the CPU if there is contention, so if nothing else is using CPU the limits you have set will be ignored.
December 5, 2013 at 8:26 am
http://www.sqlservercentral.com/scripts/Logins/104750/[/url]
If you are comfortable with PowerShell, this will script the login with the same password and SID.
December 5, 2013 at 7:58 am
Well I know you've done it via the GUI now, but the 3rd file looks like a full text index.
You could have just specified the path in the same way...
December 4, 2013 at 4:49 pm
niklasrene (11/29/2013)
ok thanks, but i can restore them as one operation? just choose both backup files?Niklas
RESTORE DATABASE blah FROM DISK = 'BACKUPPATH\DB_FULL.BAK'
WITH STATS, NORECOVERY;
RESTORE DATABASE blah FROM DISK = 'BACKUPPATH\DB_DIFF.BAK'
WITH...
December 4, 2013 at 4:41 pm
WHERE
(dbo.CostCenter.Code = @code) AND
(@Zip = 'All' OR dbo.Address.Zip in (@Zip))
This will work but won't use any index on the Zip column.
The other option is to build dynamic SQL, but...
December 4, 2013 at 4:18 pm
Well I was fairly convinced it would need sysadmin but apparently not:
The reason I thought sysadmin was needed is because there are some useful commands that require it. For example...
December 4, 2013 at 4:05 pm
Membership of the sysadmin server role gives you system administrator privileges within the SQL Server instance.
It does not give you any permission at all on the server. If you are...
December 4, 2013 at 11:36 am
With reference to the log file part of your question, does your storage array have plenty of battery backed write cache, certified for use with SQL Server? If so, the...
December 4, 2013 at 11:22 am
I've just found out that I can edit the script, so I have corrected the error and re-submitted.
November 12, 2013 at 7:43 am
OK, so the last 3 characters of line 175 have been truncated somehow.
This should be replaced with:
JOIN sys.columns c ON c.object_id = @ObjectId
Does anyone know if it is...
August 2, 2013 at 2:10 am
Hi Mark,
Thanks for pointing out the warning. That is expected and I should have mentioned it in the article. It doesn't prevent the script from working.
Regarding the truncated line 175...
August 1, 2013 at 4:20 pm
Hi Andrew,
Assuming the details in the SPN are correct (eg. it is listening on port 1433, the FQDN has been specified correctly):
Have you restarted the SQL service since adding the...
July 16, 2013 at 4:41 am
Viewing 15 posts - 16 through 30 (of 147 total)