Viewing 15 posts - 946 through 960 (of 1,655 total)
You have to set up the synchronization of logins, jobs, operators, alerts etc. yourself. The easiest way is creating SSIS packages and schedule them.
With jobs it might als...
March 28, 2008 at 4:40 am
Personally with large tables/indexes I always use a procedure which first determines the fragmentation and when depending on the reuslts either does nothing, Reorganize or Rebuild the index.
BOL contains...
March 26, 2008 at 9:39 am
Did you have a look at the FOR EACH LOOP container in SSIS ???
It's pretty easy to use. For an example see here http://www.sqlis.com/55.aspx
March 21, 2008 at 6:33 am
At my current customer we have RS on a 32-bit machine and the database on a 64-bit server. So far we never had any problems and to be honest I...
March 21, 2008 at 6:31 am
About how to loop though all files in directory you find a good example at http://www.sqlis.com/55.aspx.
About writing the filenames to a database simply load the names into a variable and...
March 21, 2008 at 4:22 am
There's a very good Whitepaper avilable which should answer all your questions.
March 19, 2008 at 4:49 am
That's strange.
Are you sure you gave the domain account exactly the same permissions in the databases than the group? By default only db_owner and sysadmins can execute stored procedures...
March 14, 2008 at 8:02 am
I suppose you want to lockout all users execpt the DBA.
ALTER DATABASE myDB
SET RESTRICTED_USER
WITH ROLBACK IMMEDIATE
The last line will rollback all open connections by non admin users. Only sysadmins...
March 14, 2008 at 7:39 am
Do you run a reindexing job at midnight? that would explain the growth of the tlog.
March 14, 2008 at 7:32 am
I don't think there's any security risk by adding a login for the domain account. The reason why it's recommended to use groups is purely to reduce administrative efforts.
In...
March 14, 2008 at 7:31 am
In SQL Configuration Manager set the SQL Agent Service to start automatically. This should resolve your problem.
March 13, 2008 at 12:00 pm
Id DBCC CHECKDB reports an error the maintenance plan job will show a status failed. The detailed erro message is written to the maintenance plan logfile, at least if you...
March 13, 2008 at 11:58 am
Or maybe even more easy, look in the SSMS Schema Change History report.
March 13, 2008 at 10:16 am
I wonder if anyone has solved this issue.
KB 941823 is not the solution in my case.
SQLH2 is run under the SQL Server service account. Same for the SQLH2PerfCollector...
March 13, 2008 at 7:39 am
With you're unequal comparison the last 3 options will never be reached.
So it also won't go to the ELSE because any value will either be unequal to 1 or...
March 4, 2008 at 5:38 am
Viewing 15 posts - 946 through 960 (of 1,655 total)