Viewing 11 posts - 1 through 11 (of 11 total)
Is it web based application? If yest then create SQL login with appropriate permissions and let the application access database via this login only. Let application user get authenticated on...
December 11, 2013 at 9:50 pm
Please use below query to enable SA login and change SA password.
Use Master
Go
ALTER LOGIN [sa] ENABLE
go
ALTER LOGIN [sa] WITH PASSWORD=N'StrongPassword'
Go
Chandu
December 11, 2013 at 9:42 pm
Check if the SA account is disabled. If it is, then enable it using below SQL query
Use Master
Go
ALTER LOGIN [sa] WITH PASSWORD='StrongPassword'
Go
Chandu
[font="Comic Sans MS"]If you dont have question,...
December 11, 2013 at 9:38 pm
Exactly what is happening? What are you expecting?
Unless you have question, you wont get answer 🙂
Chandu
December 11, 2013 at 12:05 am
Andrew,
Thanks for your response.
It is SQL2008 RTM. You mean this behavour is been taken care in Service pack and this is know issue with SQLPS ???? Even this is happening...
July 23, 2013 at 4:32 am
The same can be done using sp_msforeachtable
See below script
---------------------------------------------------------------------
Create table #tmptblsize
(table_name varchar(50),
rows int,
reserved varchar(50),
actualdatasize varchar(50),
indexsize varchar(50),
unused varchar(50))
EXEC sp_MSforeachtable 'insert into #tmptblsize exec sp_spaceused ''?'''
select * from #tmptblsize
drop table...
September 28, 2012 at 3:34 am
simply remove & from the code. It will work
Chandu 🙂
May 11, 2012 at 12:09 pm
you can add administrators while installation process.
Chandu
May 18, 2010 at 7:23 am
You can try with Litespeed. This is 3rd party backup tool where you can store your .bak file on any network dirve.
Chandu
May 18, 2010 at 7:19 am
Hi,
It was a problem of service pack. So we reverted that. Have you applied service pack like my case.
Please let me know the senario in detail to get the...
May 6, 2010 at 9:20 am
Hi All,
Thanks lot for your quick reply. Basically without any load SQL Server engine is taking 99% CPU. We have applied SP2 recently. For 3/4 days it was working fine....
October 6, 2009 at 9:54 am
Viewing 11 posts - 1 through 11 (of 11 total)