Viewing 15 posts - 1 through 15 (of 65 total)
Add one Bracket-
INSERT INTO Counting VALUES (598, (SELECT COUNT(*) FROM Transfer))
May 5, 2011 at 3:45 pm
Ohh it is really weird :)....but we should keep in practice to save everytime all the work while using any microsoft product 😛
May 5, 2011 at 2:17 pm
Extension is only for your refference there is nothing to do with SQL server. The only thing is you need to specify the name with extension (which you have given...
May 5, 2011 at 2:04 pm
Have you checked by right clicking on each data flow task whether it is enabled or not?
May 5, 2011 at 1:19 pm
You can create trigger for that-
IF EXISTS (SELECT * FROM sys.server_triggers
WHERE name = 'ddl_trig_database')
DROP TRIGGER ddl_trig_database
ON ALL SERVER;
GO
CREATE TRIGGER ddl_trig_database
ON ALL SERVER
FOR DROP_DATABASE
AS...
May 4, 2011 at 3:17 pm
You can create trigger for that -
IF EXISTS (SELECT * FROM sys.server_triggers
WHERE name = 'ddl_trig_database')
DROP TRIGGER ddl_trig_database
ON ALL SERVER;
GO
CREATE TRIGGER ddl_trig_database
ON ALL SERVER
FOR DROP_DATABASE...
May 4, 2011 at 3:14 pm
No they cann't be same as the data stored in a Differential backup includes only the transaction log files up to the current checkpoint and transaction log contains all the...
April 14, 2011 at 4:25 pm
select left('TransactionLogBackupTest_TransLog_201104051400.TRN',(cast(charindex('_','TransactionLogBackupTest_TransLog_201104051400.TRN') AS INT) -1))
use "CAST AS INT" also before charindex. Sometime if the string return VARCHAR or anyother datatype than INT, than your query will fail.
April 14, 2011 at 3:23 pm
Does user (sa on 1st server) have public role on master DB on secend server?
April 14, 2011 at 2:57 pm
Analyze the latency using tracer token. Also check the LAN or WAN staus.
April 12, 2011 at 7:14 pm
Hi Moorthy,
Yes using DB mirroring with replication is a good option as mirroring supports transaction replication with automatic failover if you do mirroring on publisher database.
Plz go through th BOL...
April 12, 2011 at 6:07 pm
January 6, 2011 at 9:24 pm
Run the powershell as an admin.
June 20, 2010 at 8:33 pm
You can also do this from ssms. Security--->logins--->choose login--->rightclick--->properties----> Disabled
July 9, 2009 at 2:10 am
You can also do this from ssms. Security--->logins--->choose login--->rightclick--->properties----> Disabled
July 9, 2009 at 2:10 am
Viewing 15 posts - 1 through 15 (of 65 total)