Viewing 15 posts - 121 through 135 (of 454 total)
Tried to connect with DAC, but encountered problems.
BOL states that "The connection is only allowed from a client running on the server. No network connections are permitted."
What that means? that...
July 13, 2015 at 2:59 pm
Yes, I just also found it. So it does not look as a solution?
July 13, 2015 at 10:05 am
That's interesting idea, thank you.
But if I try to :
backup database [Resource]
to disk = 'i:\backup\resource.bak'
I get the following error:
Msg 911, Level 16, State 11, Line 2
Database 'Resource' does not...
July 13, 2015 at 9:39 am
Thanks for your patience, Mister Magoo.
There was a long holiday weekend, and now I am back to my problem.
If you look inside the file ssms.exe.config, there id a node called...
July 6, 2015 at 1:26 pm
Thanks for quick reply. Here is what I tried to do:
I found that extensions folder is actually installed in SQL Server directory:
C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio\Extensions
and it has sub-folder named...
July 1, 2015 at 2:19 pm
Contact Steve Jones - he is admin of this site. We always have various surveys here.
July 1, 2015 at 12:28 pm
Thanks for 1st tip, Phil. Rollup works for me, however with some changes to order by clause.
But about the 2nd tip, this is not exactly BOL that I expected. I...
June 24, 2015 at 9:52 am
I guess that my workspace is remote on the server.
It created another database in Analysis Server with a long name like <dbname>_myUserName_letters_and_numbers.
The size of the source database in SQL...
June 18, 2015 at 11:37 am
But who is using sp_helptext in SQL scripts anyway? All DBA's are using
select definition from sys.sql_modules
where object_id = object_id('cProcWithLongStrings')
for any scripting.
For using any S.P. that returns values, you...
June 18, 2015 at 9:45 am
use master
go
select type_desc, name
from sys.objects
where is_ms_shipped =0
June 18, 2015 at 9:23 am
i1888 (5/14/2015)
So I restored the full backup, ...
Attempting to restore this backup ...
So did you actually restore it, or just attempted to restore?
Did you use MOVE clauses to place...
May 15, 2015 at 8:35 am
begin try
drop table #errorLog
end try
begin catch
end catch
CREATE TABLE #ErrorLog (
LogDate datetime,
...
May 14, 2015 at 12:31 pm
Thanks again.
Here is the query that I came up with:
select f1.Operation,
f1.AllocUnitName,
f1.[Page Id],
...
May 11, 2015 at 3:03 pm
Thanks, Gail. That's good advice. So I used fn_dblog(null,null) and DBCC log. They are pretty much identical, however the former is better because I can apply Where clause.
But my next...
May 11, 2015 at 1:56 pm
Thanks. I liked your joke, Alvin.
April 30, 2015 at 3:56 pm
Viewing 15 posts - 121 through 135 (of 454 total)