Viewing 15 posts - 2,191 through 2,205 (of 2,900 total)
Double post .... Don't reply here, use the other one.
September 27, 2008 at 5:48 pm
Don't use sa. Create a windows login with the appropriate premissions in SQL and Windows.
September 27, 2008 at 5:47 pm
September 25, 2008 at 1:18 pm
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
Viewing 15 posts - 2,191 through 2,205 (of 2,900 total)