Viewing 15 posts - 2,191 through 2,205 (of 2,897 total)
Thanks. Currently I'm working on existing installs that I'm trying to fix.
September 24, 2008 at 3:04 pm
So, my "Domain\SQLservice" account user just needs to be a normal domain user, not an admin. And then put it in the local "SQL Server2005...$...$..." groups as needed ?
September 24, 2008 at 2:50 pm
You can also specify the collation to use in the query itself:
select * from LINK.dbname.dbo.tbname where UPPER(Issuer) <> Issuer collate SQL_Latin1_General_CP1_CI_AS
September 24, 2008 at 11:40 am
Do you want to move backups on and off the server ? I would think you should have "Remote Desktop" or something similar. Can you map to a drive...
September 24, 2008 at 8:31 am
Even if you don't have physical access, you should have some kind of remote admin logon ability.
September 24, 2008 at 7:59 am
What type of agreement do you have with them ?? Why can't you access your own servers ?
September 24, 2008 at 7:41 am
Not through a "backup" process, but you can write a simple script to copy the table to a new table, truncate the old table, and copy the data back in.
September 23, 2008 at 1:33 pm
You should do a test restore for practice and make sure everything work. Take your live DB and Log backups, and restore them to "Restore_practice" database.
September 23, 2008 at 10:43 am
Maybe you could run a job every hour to join sysprocesses to syslogins by sid, and output to a table "recent_logins" ... include the nt_username. Then after a week, the...
September 23, 2008 at 10:02 am
eddy (9/23/2008)
Backup in step 3 is been taken by redgates' sqlbackup (every night same time)
The backup/restore in step 2 is a T-Sql...
September 23, 2008 at 8:28 am
Why not use the profiler with sp:StmtStarting and sp:StmtCompleted in Stored Procedures Events / TSQL SQL:StmtStarting and SQL:StmtComplted for that particular Job to get the details instead of doing Print...
September 23, 2008 at 8:22 am
Jeff Moden (9/22/2008)
My recommendation is to peel one potato at a time. To know which potato to peel first, you must do some measuring. Put the following at...
September 23, 2008 at 8:10 am
It looks like you're backing up production in step 2, then again in step 3. Why not back it up first thing, then copy to another location. Then restore to...
September 22, 2008 at 1:02 pm
If you have anything that's server specific, such as operator names for email notification, then make sure they already exist on the target server. You can script them out &...
September 22, 2008 at 12:57 pm
Viewing 15 posts - 2,191 through 2,205 (of 2,897 total)