Viewing 15 posts - 16 through 30 (of 53 total)
Hello,
According to my understanding, you can only install 1 physical instance of SSIS on each machine. Check the following link for an article which discusses the same.
March 15, 2013 at 1:03 am
Hello mkarthikeyan,
It would be hard to suggest without having a look at the code. To make a start, check the execution plan of the stored procedure and see which part...
March 15, 2013 at 12:58 am
Hi,
Please check the following links:
http://www.sqlservercentral.com/articles/Triggers/64214/
http://www.sqlservercentral.com/Forums/Topic624502-8-1.aspx#bm624579
March 15, 2013 at 12:53 am
If you create a login and set 'master' as default database then, the user will only be created in the master database. The login/user will not have access to any...
March 15, 2013 at 12:45 am
toddasd (12/5/2012)
declare @q varchar(max)
SELECT @q = ISNULL(@q, '') + 'DELETE FROM ' + tablename + ' where tid =' + convert(char,rowid) + '; ' from #incoming where...
December 6, 2012 at 5:32 am
ananda.murugesan (12/6/2012)
user apperaing in secondary instance database by atuomatically during restore log shipping process..But it won't connect the application due to login is not apperaing under security->Login, Does we...
December 6, 2012 at 5:26 am
Hello Kapil,
Does the destination database have any existing data? If not, why not use backup-restore?
If the destination database already has some data and you are copying data from existing tables...
December 6, 2012 at 5:22 am
Woh ! I thought you only need to execute the last delete statement.. But, I guess you need to execute a delete statement on all the tablenames from your temporary...
December 5, 2012 at 10:38 am
Hello Casper,
According to my knowledge of deadlocks,
Deadlocking occurs when two or more user processes have locks on separate objects and each process is trying to acquire a lock on the...
December 5, 2012 at 10:35 am
Hello Alan,
Try this...
DECLARE @QRY varchar (255)
SELECT @QRY = 'DELETE FROM ' + tablename + ' where tid =' + convert(char,rowid) from #incoming where action = 0
--PRINT @QRY
EXEC (@QRY)
December 5, 2012 at 10:23 am
Hello David,
Please check the below link.. Is this you were looking for?
http://www.mssqltips.com/sqlservertip/1311/web-based-database-administration-for-sql-server/
December 5, 2012 at 5:39 am
Hello Bala,
Tail log backups are only needed in case of a Disaster Recovery scenerio (Point in time recovery is needed). One should not take taillog backup in normal routine.
December 5, 2012 at 5:32 am
One reason could be that other users are not part of CTAP_professional group and only this group has access to the database.
However, the most probable reason could be that the...
December 4, 2012 at 10:20 am
Hello,
Please refer to the below link. The second sentence says "Login auditing can be configured to write to the error log on the following events".
http://msdn.microsoft.com/en-us/library/ms175850(v=sql.105).aspx
December 4, 2012 at 9:48 am
Hello,
Do you want to have connectivity between 02 SQL Servers or, SQL Server to any other RDBMS?
December 4, 2012 at 6:51 am
Viewing 15 posts - 16 through 30 (of 53 total)