Viewing 15 posts - 16 through 30 (of 30 total)
I think that it would be impossable to get this question correct ( unless you chose the incorrect series)as it does not give you the option to select Local named...
December 28, 2007 at 4:00 am
pshrestha4 (12/25/2007)
Could someone tell me how to figure out the port number of a particular instance of SQL server.
You have several options for determining the port number a SQL Server...
December 26, 2007 at 6:36 am
Ah but Gail did you not know that SQL Server is self tuning indexes never get fragmented statistics are always up to date (especially when do an upgrade from oh...
December 22, 2007 at 6:25 am
Oh and with regards to interviews. I try to remember that that person had to prepare , get suited and booted , go to the expense and stress of...
December 21, 2007 at 10:44 am
I have visited many many client sites where absolutely no maintenance plans exist and in some cases they have a very small window in their 24/7 operation to update...
December 21, 2007 at 9:58 am
If you would like to find out more about plan guides goto
http://technet.microsoft.com/en-us/library/ms190417.aspx
in addition I would like to add that index fragmentation may also add to your problems if...
December 21, 2007 at 4:31 am
IF this is a SQL 2005 instance then the following may help
select suser_name(role_principal_id), suser_name(member_principal_id) from sys.server_role_members where member_principal_id = suser_id('LOGIN')
select permission_name, class_desc, major_id from sys.server_permissions where grantee_principal_id = suser_id('LOGIN')
Note: LOGIN...
December 20, 2007 at 4:24 am
BTW you can read Pauls totally excellent article on recovering corrupt database here
December 19, 2007 at 4:19 am
Ah well perhaps I should have added that you should first open your dos command window -> run -> CMD then from there navigate to the Drive then folder in...
December 16, 2007 at 4:25 am
start /wait setup.exe ADDLOCAL=SQL_Engine INSTANCENAME=MSSQLSERVER UPGRADE=SQL_Engine SKUUPGRADE=1 /qb
You can replace the /qb with /qn if you want a silent upgrade but then you will need to check the install logs...
December 14, 2007 at 4:28 am
Are you trying to change a default or named instance of sql server ? if it is not a default instance then you need to change the string MSSQLSERVER to...
December 13, 2007 at 4:17 am
The question that I always ask is:
Given that we take a full backup once a week and diff backups every day and transaction log backups every 15 mins and...
December 12, 2007 at 4:47 am
:hehe: Glad to see I was not the only one to discover this feature or is it lack of Feature.. and you will also find that if you don't install...
December 11, 2007 at 3:28 am
I would suggest that you first check both the SQL server Error log and the Server Event log this should give you starting point hopefully you have enabled logging for...
December 10, 2007 at 4:51 am
I think that you should perhaps remember the rule Login to the Server and Access to Database objects. Just because you have been granted rights to Login to the...
December 10, 2007 at 4:14 am
Viewing 15 posts - 16 through 30 (of 30 total)