Viewing 15 posts - 316 through 330 (of 1,068 total)
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...
February 2, 2012 at 5:08 am
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...
February 2, 2012 at 4:33 am
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...
January 31, 2012 at 12:55 am
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.
January 30, 2012 at 9:19 pm
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...
January 29, 2012 at 10:24 pm
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...
January 29, 2012 at 12:30 pm
User is disabled (in the database level) by revoking CONNECT permission.
USE <database>
GO
REVOKE CONNECT FROM <user>
GO
January 29, 2012 at 12:18 pm
crazy4sql (1/18/2012)
January 18, 2012 at 1:44 am
Just data. No free space of DB.
January 18, 2012 at 1:02 am
You can use Profiler for this purpose.
Check whether AutoClose property is ON for this DB.
January 18, 2012 at 12:43 am
I have a question for you.
Did you face this question in an interview for SQL Server DBA position?
January 18, 2012 at 12:40 am
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,...
January 17, 2012 at 10:10 pm
Looks like it is NOT SQL Server backup file.
January 17, 2012 at 9:13 pm
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)...
January 16, 2012 at 9:40 pm
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 ;
January 15, 2012 at 10:58 pm
Viewing 15 posts - 316 through 330 (of 1,068 total)