Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)

  • RE: Limit DB access outside application

    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...

  • RE: Can not enter in sql server under sa

    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

  • RE: Can not enter in sql server under sa

    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,...

  • RE: Is SQL crashed???

    Exactly what is happening? What are you expecting?

    Unless you have question, you wont get answer 🙂

    Chandu

  • RE: SQLPS issue

    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...

  • RE: Find size of all tables in a database

    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...

  • RE: sys.sysservers table

    simply remove & from the code. It will work

    Chandu 🙂

  • RE: Give sysadmin privilege to local administrators group during installation

    you can add administrators while installation process.

    Chandu

  • RE: Backup .bak to My PC Local drive?

    You can try with Litespeed. This is 3rd party backup tool where you can store your .bak file on any network dirve.

    Chandu

  • RE: 100% CPU utilisation

    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...

  • RE: 100% CPU utilisation

    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....

Viewing 11 posts - 1 through 11 (of 11 total)