Viewing 15 posts - 31 through 45 (of 99 total)
This script returns a complete set of replication information.
SELECT DISTINCT
srv.srvname publication_server
, a.publisher_db
, p.publication publication_name
, a.article
, a.destination_object
, ss.srvname subscription_server
, s.subscriber_db
,...
June 5, 2013 at 12:26 am
Put the results in Temp Table from the Source and Fire In query as SQLSACT suggested.
June 3, 2013 at 7:51 am
Sql Server Agent also must be running with user credentials, check whether that credentials are right !!
May 31, 2013 at 7:17 am
Try starting SQL Server Agent with administrator priviliage and password, I guess your Sql Server Agent is running on Local System Account.
May 31, 2013 at 7:10 am
Googled it.. and found the solution
Check this out....
http://support.microsoft.com/kb/320499">
http://support.microsoft.com/kb/320499
Thanks
May 30, 2013 at 2:00 am
Instead of passing the output back to OLDB Source (i.e. I am assuming you are taking about Front end code's here like .net C# or vb.net etc...) you should process...
May 29, 2013 at 6:19 am
Try this...
SELECT CASE WHEN StartDate IS NULL THEN 'N/A' ELSE CAST(DATEDIFF(dd,StartDate,EndDate) AS varchar) END Days
May 29, 2013 at 6:11 am
50 Instance for Stanard and Enterprise, Only workgroup edition allows 16 instances.
May 29, 2013 at 4:22 am
Check the Data, whether you have a data for said months, if there is a data it should reflect in graph too..
May 29, 2013 at 3:50 am
Connect the SQL Server instance in Single User Mode and try restoring it.
How to Start Instance in Single User Mode.
Open Sql Server configuration Manager -> Sql Server Services -> Sql...
May 27, 2013 at 5:27 am
This is because your connection pools are overfilled or some of the connection not closed properly which is not in use, try killing the unwanted connection using SSMS.
May 27, 2013 at 5:20 am
duplicate post, already explained to your previous post.
May 27, 2013 at 1:19 am
manoj.ramaiah (5/27/2013)
May 27, 2013 at 1:17 am
Create a SQL in a Variable and execute using sp_executesql procedure.
May 27, 2013 at 1:10 am
You can apply a Check Constraint on ParentColumn where ParentColumnId <> MainId.
May 27, 2013 at 1:09 am
Viewing 15 posts - 31 through 45 (of 99 total)