Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,068 total)

  • RE: Memory management in SQL Server

    Are you using SQL Server Express edition?

    Only in SQL Server Express edition, AutoClose is ON by default.

    When the last user exits, the database is closed cleanly (data and objects...

  • RE: Memory management in SQL Server

    shovankar (1/31/2012)


    ... data and objects are located in the main memory...

    I was wondering if such kind of memory management can be achieved in SQL Server...

    Are are you saying this concept...

  • RE: Adding Linked Servers

    na1774 (1/30/2012)


    ...this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections."...

    Enable remote connection to this server.

    By default remote connection is...

  • RE: schema and user

    SQL Server 2000, automatically creates schema with users name if the user is not member of db_owner role.

    SQL Server 2008, by default creates objects on dbo schema.

  • RE: What happens during an update?

    Gabriel P (1/29/2012)


    I keep reading people saying an update is essentially a delete combined with an insert. How true is this as far as physical I/O?

    As for as physical I/O...

  • RE: BULK INSERT

    In addition to BATCHSIZE there are few more conditions for minimal log to occur. For example, TABLOCK option also should be used.

    Please the BOL for more details.

    Also note that, it...

  • RE: simple user question

    User is disabled (in the database level) by revoking CONNECT permission.

    USE <database>

    GO

    REVOKE CONNECT FROM <user>

    GO

  • RE: need quick reply yes/no from experts

    crazy4sql (1/18/2012)


    ok, so then how sql come to know while restoring the database that it need to add the specific amount of free space in database files and as exact...

  • RE: need quick reply yes/no from experts

    Just data. No free space of DB.

  • RE: DBCC CHECKDB

    You can use Profiler for this purpose.

    Check whether AutoClose property is ON for this DB.

  • RE: Hi all

    I have a question for you.

    Did you face this question in an interview for SQL Server DBA position?

  • RE: Replication error

    mariobehring (1/17/2012)


    ...

    2012-01-17 14:40:48.318 Status: 0, code: 20015, text: 'Login failed for user 'MSIGA'.'.

    2012-01-17 14:40:48.318 Login failed for user 'MSIGA'.

    This MSIGA user has all permissions possible inside both SQL Server machines,...

  • RE: can anyone pls help with this error in restore database

    Looks like it is NOT SQL Server backup file.

  • RE: Fullbackup job not backing up all my sharepoint DB's?

    I suggest following:

    1) Check the SQL Server error log. Verify the entries related to backup. Are there any errors? Notice the backup path\filename.

    2) Increase the length of @FileName to 1000

    3)...

  • RE: SQLNCLI Error For Linked server

    If you execute the following on SSMS query windows (not inside trigger) on Server B, does it work?

    EXEC [ipaddress].msdb.dbo.sp_send_dbmail

    @profile_name='SQLDBA',

    @recipients = 'abc@xyz.com',

    @body = 'Test Mail,

    @subject = 'Testing Trigger ;

Viewing 15 posts - 316 through 330 (of 1,068 total)