Viewing 15 posts - 106 through 120 (of 318 total)
How big is the result set?
How does the SSIS package operate on the result set as it is received (as a set or row by row)?
December 11, 2013 at 9:41 am
In SSMS set results to text and run (replace DOMAIN\login_name with appropriate values):
select 'USE ' + name + '
GO
CREATE USER [DOMAIN\login_name] FOR LOGIN [DOMAIN\login_name]
GO
EXEC sp_addrolemember N''db_datareader'', N''DOMAIN\login_name''
GO
'
from master.sys.databases
where database_id...
December 10, 2013 at 6:21 pm
For more info on BULK_LOGGED recovery and index rebuilds please see:
http://sqlblog.com/blogs/kalen_delaney/archive/2011/03/08/what-gets-logged-for-index-rebuilds.aspx
December 10, 2013 at 9:18 am
The default race is always running, unless it was stopped.
Look at the .trc files in the MSSQL\Log folder.
If the files cover the period(s) in question, the answer is in...
December 9, 2013 at 4:20 pm
Object drop and create events are noted in the default trace.
You can see in there what process/user causes the drop/recreate, if in fact that is happening.
December 9, 2013 at 3:58 pm
How much space are you leaving in the datafiles?
You also have to leave room in the data files for the index rebuilds.
December 9, 2013 at 3:54 pm
The transaction log will need to be at least as large as your largest table.
December 9, 2013 at 3:51 pm
David.Poole (12/4/2013)
December 4, 2013 at 3:16 pm
In general performance reviews are a charade.
Before the results of the review process are known, it has already been decided how much will be allotted to merit raises and...
December 4, 2013 at 10:25 am
You might want to consider table/index compression.
Edit: Sorry did not notice it was standard edition. Data compression not available
November 27, 2013 at 12:47 pm
Have you typed the password out in a text editor and then copied and pasted it into the login window?
Are the SSMS the same version on both servers?
Same OS patch...
November 22, 2013 at 9:38 am
How are you trying to connect from the local machine to the SQL server?
SSMS or is it a application?
November 22, 2013 at 8:56 am
What is in the SQL server error logs for these failed login attempts?
November 21, 2013 at 2:20 pm
If you want to brute force users out and then drop it, you can run:
USE [master]
GO
ALTER DATABASE [db_name] SET RESTRICTED_USER WITH ROLLBACK IMMEDIATE
GO
DROP DATABASE [db_name]
GO
November 20, 2013 at 6:06 pm
Do you see Async network IO waits on all of the publishers or only the upgraded ones?
Have they checked the network interfaces on the new servers (full duplex?)?
What do round...
November 18, 2013 at 10:06 am
Viewing 15 posts - 106 through 120 (of 318 total)