Forum Replies Created

Viewing 15 posts - 181 through 195 (of 337 total)

  • RE: Granting rights

    Lowell (8/12/2011)


    Just in case you were still going to ignore the advice Grant gave you...listen to Grant.

    One of the things I love about SQLServerCentral is that when you ask a...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Please help this query

    Just replace the IN clause with NOT IN clause.

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Connection Error- No process at other end of pipe...

    Check whether the TCP\IP protocol is enabled.

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: SQL Agent not starting

    See whether this helps

    http://support.microsoft.com/kb/975752/en-us?sd=rss&spid=13165

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: resource database.

    Cannot think of a scenario where Resource database gets corrupted except when you are installing a service pack which errors out and corrupts the database

    The best thing you can do...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Granting rights

    Thanks.

    But I was thinking of a scenario where there are 10 users and all these 10 users have different set of permissions where in by no 2 users have the...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Server side tracing and Performance Monitor

    Grant Fritchey (8/4/2011)


    No difference at all. You run a server side trace output to a file, then you open the output file using Profiler. That's it. You can then open...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Log In failed

    ALZDBA (8/2/2011)


    search ssc for "lost sa password". Those threads will get you started.

    e.g. http://www.sqlservercentral.com/Forums/Topic1054427-146-1.aspx

    Unfortunately none of the posts on ssc were helpful.

    One that helped was this

    http://blogs.ameriteach.com/chris-randall/2009/12/11/sql-server-2008-forgot-to-add-an-administrator-account.html

    But somehow it works only...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Error: 18456, Severity: 14, State: 16. The log for database 'PICAPROD' is not available.

    GilaMonster (8/2/2011)


    Sachin Nandanwar (8/2/2011)


    Try detaching and then attaching the database.

    No. Please no. Worst thing possible.

    Unless by some miraculous chance the database was cleanly shut it will not reattach. You should...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Error: 18456, Severity: 14, State: 16. The log for database 'PICAPROD' is not available.

    Try detaching and then attaching the database.

    Try the steps posted here

    http://www.sqlservice.se/allmant/dont-panic-the-log-for-database-name_here-is-not-available/

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Group based on column name

    Note sure how exactly your table structure & sample data looks like.Based on your description I have guessed the structure and expected output.

    Declare @t table(Activities varchar(10),Labor varchar(10),Fabrication varchar(10),Transport varchar(10),Distribution varchar(10))

    insert...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: sys.dm_exec_query_memory_grants

    Max memory settings controls only the max size of buffer pool(paged memory).

    So in short the memory of 234752KB comes from 28 GB max setting.

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Log file shrinking problem

    What does this return ? It will tell you why the log file is not shrinking .

    select log_reuse_wait_desc

    from sys.databases

    where database_id = db_id()

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Few Clarifications on SQL Security

    Read this :-

    http://www.mssqlcity.com/Articles/Adm/manage_users_permissions.htm

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

  • RE: Is this true?

    hi, sachin nandawar!!!

    i'm sorry, the time that i stay without post!! I was having problems with my work!

    with relation the book - SQL Server 2008 Internals, this link: http://www.amazon.com/Microsoft%C2%AE-SQL-Server%C2%AE-2008-Internals/dp/0735626243 you...

    --------------------------------------------------------------------------------------------------
    I am just an another naive wannabe DBA trying to learn SQL Server

Viewing 15 posts - 181 through 195 (of 337 total)