Viewing 15 posts - 1 through 15 (of 63 total)
There will never be more than 1 AccountID for any of the products. For example you have with Product1 35 it could only have Product 2 of 450 or...
November 18, 2015 at 11:04 am
This got me where I wanted to go.
Reason behind all of this is separation of duties.
August 14, 2014 at 4:05 pm
Stupid. I just need to put the criteria for the computed column in the trigger instead of using the computed column name.
March 12, 2013 at 1:02 pm
I tried this but same constraint issue.
Delete From T1
From database.dbo.Table1 T1
Where DateAdd(day, -180, GetDate()) > T1.Table1Date
And Not Exists(Select * From database.dbo.Table2 T2
Where...
February 15, 2013 at 3:14 pm
Is it possible to do something like this for linked servers?
October 18, 2011 at 7:20 am
This worked.
isnull(foldername ,'') LIKE '%' + isnull(@foldername ,isnull(foldername ,'')) + '%'
Also set the parameter properties to allow blank value.
August 17, 2011 at 9:27 am
Found it.
select
substring(SUBSTRING(ExtensionSettings,DATALENGTH('<ParameterValues><ParameterValue><Name>TO</Name><Value>')+1,DATALENGTH(ExtensionSettings)),1,CHARINDEX('</value>',SUBSTRING(ExtensionSettings,DATALENGTH('<ParameterValues><ParameterValue><Name>TO</Name><Value>')+1,DATALENGTH(ExtensionSettings)))-1)
from Subscriptions
August 8, 2011 at 7:24 am
I am thinking of implementing a "Local Data Cache" using Microsoft Synchronization Services for ADO.NET.
March 29, 2011 at 7:54 am
The Export Column component in the Data Flow worked perfectly for this. No variables needed.
December 22, 2010 at 10:53 am
I have not found anything on Server 2008. I applied the trace flag and now am wait and see. The server would hang randomly. We haven't found...
October 5, 2010 at 7:11 am
Thank you. I sent this to our network engineer so he can confirm the server model. However, we are running Server 2008 the article mentions 2003. I'm...
September 28, 2010 at 6:52 am
Viewing 15 posts - 1 through 15 (of 63 total)