Viewing 15 posts - 76 through 90 (of 499 total)
You need the actual filename for xp_fileexist, so unless you can get the exact timestamp before checking, its not going to be possible.
I think the way to check for a...
December 16, 2011 at 2:05 am
valeryk2000 (12/15/2011)
The reason I asked is that in the past I had a problem with try/catch when parent proc did not catch the error in...
December 15, 2011 at 8:44 am
Dev (12/15/2011)
there are at about 7 types of SQL Server DBAs in the world
Would you please share it here or give a pointer to the article.
Grumpy, Sleepy,...
December 15, 2011 at 7:58 am
I don't know if its considered best practice, but I use a single try-catch block and return codes
DECLARE @RTN INT;
DECLARE @ErrMsg NVARCHAR(4000);
BEGIN TRY
BEGIN TRAN
EXEC @RTN = Proc1
IF (@RTN !=...
December 15, 2011 at 7:41 am
Dev (12/15/2011)
blame the devs
Everybody just blame me... :crying:
No, that would have been blame the Dev.
December 15, 2011 at 7:19 am
In your dynamic SQL I think you just need to test for numeric
Where you have
' FROM (SELECT TIMESTAMP, LotID, CONVERT(numeric(25,13),isnull(VariableValue,0.0)) as VariableValue, VariableName
...
December 14, 2011 at 2:45 am
8192 rings a bell as a default setting somewhere.
Are you first seeing this truncation when calling a web service, or WCF/SOAP/XML, or some other .NET application?
December 13, 2011 at 5:11 am
I'm sure there is something like maxMessageSize in the WCF config files - you can change it up to 2GB, otherwise it truncates around 8192.
Check system.ServiceModel in the config files....
December 12, 2011 at 3:32 pm
Could the XML contain any unicode?
Try NVARCHAR(MAX) - either it works or, if you then get limited to around 20,000 at least we've learned something about the problem.
December 12, 2011 at 3:18 pm
I think what you're looking for is either a dynamic pivot - this will produce a variable number of columns for each timestampt/toolID key. In a dynamic pivot you...
December 12, 2011 at 3:06 pm
Koen Verbeeck (12/9/2011)
Dev (12/9/2011)
Koen Verbeeck (12/9/2011)
December 9, 2011 at 2:21 am
Firstly, by how much is the value wrong from what you expect. Could it be due to rounding?
You should then break down the problem into smaller steps to find...
December 9, 2011 at 2:13 am
I guess Access probably does not support CTEs.
You could try taking the CTE out and replacing it with a derived table like this
SELECT DR_DCATCD,
...
December 9, 2011 at 1:18 am
Sorry I've never used reporting services.
I'd recommend you repost the original question under "Reporting Services", "Reporting Services 2005 Development", http://www.sqlservercentral.com/Forums/Forum1063-1.aspx making it clear you're looking for help with a...
December 8, 2011 at 6:52 am
Yes I found the Wiki, and other articles, but the whole topic of normalisation seems couched in academic terms.
I was trying to google for simple definitions of things...
December 8, 2011 at 6:06 am
Viewing 15 posts - 76 through 90 (of 499 total)