Viewing 15 posts - 241 through 255 (of 286 total)
January 26, 2005 at 12:24 pm
Something like this:
IF EXISTS( SELECT * FROM sysobjects WHERE name = 'T1' )
DROP TABLE T1
GO
CREATE TABLE T1( C1 NCHAR(1) )
SET NOCOUNT ON
INSERT T1 VALUES( 'A' )
INSERT T1 VALUES( 'B' )
INSERT...
January 25, 2005 at 5:31 pm
You can use DTS task - Trasfer Databases to copy database between servers, but you need to have SQL Server 2000 and it will be some extra network traffic during...
January 20, 2005 at 2:01 pm
This post has information and links about linked servers configuration with Windows authentication:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=150105#bm150118
January 19, 2005 at 12:31 pm
To use Windows authentication with linked servers you have to configure security account delegation. Your server has to be Windows 2000 (or 2003) in domain with Active Directory with...
January 19, 2005 at 12:25 pm
With this 2 procedures you can query remaining linked or remote logins on your servers: sp_helplinkedsrvlogin, sp_helpremotelogin (execute them on both servers).
It is quite complicated task to configure linked servers with...
January 18, 2005 at 11:03 am
Did you include in your monitoring file T-SQL event class SQL:BatchCompleted ?
January 17, 2005 at 5:41 pm
Yes, you should append log backups (you need all log backups for restore). And about last log - it has data just for last 10 minutes from 11 to 11:10 AM.
January 13, 2005 at 3:02 pm
You don't need to do full backup because of more often logs backups. Data written to database file from log file every time when log backed up. So, before the next...
January 13, 2005 at 11:43 am
Try these webcasts (there are about SSL and SQL), may be they will be usefull:
http://www.database-security.info/Content/SQLServerWebcasts.asp
January 12, 2005 at 1:32 pm
May be it would be better to run scheduled SQL Agent job with this procedure. And it is also better to run this job on nights as soon as you...
January 12, 2005 at 1:24 pm
Some replication parameters require reinitialization of subscriptions. So, if you change something in replication make sure this settings do not require reinitialization.
January 11, 2005 at 11:43 am
Just a little suggestion to the topic. Why not use in dynamic SQL just fully qualified name, like this:
set @cmd = 'DELTEKCP..sp_grantdbaccess ' + @loginame + ', ' + @name_in_db...
January 5, 2005 at 12:55 pm
Can you use job ID (from sysjobs table in MSDB) instead of job name as global parameter? So, the job can be renamed any time. In this case just don't recreate...
January 5, 2005 at 12:43 pm
Think you look for this query to SQL Server log:
EXEC sp_readerrorlog 1, 'C:\MSSQL\LOGS\SQLlog.txt', 1, 'error'
where 'C:\MSSQL\LOGS\SQLlog.txt' - is location of your SQL serever error log, 'error' - is search string...
January 5, 2005 at 11:50 am
Viewing 15 posts - 241 through 255 (of 286 total)