Viewing 15 posts - 2,761 through 2,775 (of 6,036 total)
It's not obvious where these prints come from:
W (4):
W (5):
W (6): 23517
...
November 10, 2008 at 11:29 pm
Check your data.
Something makes the values not the same.
Double spaces, space in front, line feed at the end of the fields values, anything else what could make the difference.
November 10, 2008 at 11:18 pm
CrazyMan (11/10/2008)
Hi ArthurIt depends, i would use >datadiff 🙂
And would be wrong.
November 10, 2008 at 12:38 pm
Please run these 2 queries:
SELECT count(*) FROM < Table Name > WHERE SoldYr1 < 0 AND SoldYr2 = 0
and
SELECT CASE WHEN t.SoldYR1 > t.SoldYR2
...
November 9, 2008 at 6:22 pm
aevans1981 (11/4/2008)
I have read through most of this post, but not all, I am using the code that was originally supplied.
When I try fn_WorkDays(27/10/2008...
November 6, 2008 at 12:57 pm
If you don't know what is UNC notation you may always google it.
November 4, 2008 at 5:59 pm
1st, you don't need USE.
Just point on required database when call procredure :
EXEC DatabaseName.dbo.ProcedureName
2nd, as soon as you know the name of user who creates the table(s) just inside procedure...
November 4, 2008 at 2:42 pm
Then use SELECT instead of PRINT.
But it's more resource consuming.
November 4, 2008 at 1:42 am
Wouldn't it be easier just to print the values you want to see during SP execution?
November 4, 2008 at 12:48 am
What generates those XML's?
November 4, 2008 at 12:39 am
IP address does not belong here.
Use proper UNC notation.
November 3, 2008 at 10:20 pm
Replace "Z:\" with full network path:
"\\Server\Folder\Folder\...\log.txt"
Must help.
November 3, 2008 at 9:57 pm
Try
ORDER BY [Committee Name]
for both options.
November 3, 2008 at 9:28 pm
select @periodArray = ISNULL(@periodArray + ',', '') + Period
from @myTable
select @periodArray
Much less typing.
🙂
November 3, 2008 at 9:18 pm
The way to go here is to retrieve whole XML string from the field, pass it to the application which suppose to parse XML and store parsing results in database...
November 3, 2008 at 3:15 pm
Viewing 15 posts - 2,761 through 2,775 (of 6,036 total)