Viewing 15 posts - 1,276 through 1,290 (of 6,036 total)
ben.brugman (8/2/2016)
_____________
Code for TallyGenerator
August 2, 2016 at 5:11 pm
ChrisM@Work (8/2/2016)
Sergiy (8/1/2016)
ben.brugman (7/21/2016)
spaghettidba (7/21/2016)
Dates have no format when they are stored in the databaseDates definitively have a format when they are stored in the database.
Dates do not have format...
_____________
Code for TallyGenerator
August 2, 2016 at 4:34 pm
ben.brugman (8/1/2016)
So '20160331' would become 2013-04-01 (Two years and something,...
_____________
Code for TallyGenerator
August 1, 2016 at 10:47 pm
John Mitchell-245523 (7/21/2016)
_____________
Code for TallyGenerator
August 1, 2016 at 10:43 pm
ben.brugman (7/21/2016)
spaghettidba (7/21/2016)
Dates have no format when they are stored in the databaseDates definitively have a format when they are stored in the database.
Dates do not have format stored in...
_____________
Code for TallyGenerator
August 1, 2016 at 10:27 pm
BigB (7/28/2016)
HiYeah I know how outer join works. Just wondering why it is not updating tab1.id when select returning the result set.
Which particular value from t2 you're assigning to each...
_____________
Code for TallyGenerator
July 31, 2016 at 6:59 pm
Mark W Johnson (3/9/2011)
krowley (3/9/2011)
_____________
Code for TallyGenerator
July 29, 2016 at 3:07 am
Can you be more specific about the term "completely different logic"?
Are the tables at least the same for those different logics?
_____________
Code for TallyGenerator
July 28, 2016 at 12:16 am
I honestly do not see how this process can benefit from dynamically created static tables.
1. The CSV fields are not known at design time, they are not known at the...
_____________
Code for TallyGenerator
July 27, 2016 at 12:20 am
ben.brugman (7/21/2016)
Especially handling the EOL within fields is a bit problematic,...
_____________
Code for TallyGenerator
July 26, 2016 at 11:45 pm
I guess there is no point of getting rid of the cursor.
You may mark a payment "Paid" only after the payment has been actually made.
And I bet the payments are...
_____________
Code for TallyGenerator
July 26, 2016 at 8:56 pm
Paul Giles-Randall (7/25/2016)
The cursor, is holding a running total, when this running total goes over 20, then, as in the example above i...
_____________
Code for TallyGenerator
July 26, 2016 at 8:45 pm
calvin_wk_wong (7/24/2016)
pietlinden (7/24/2016)
Maybe this article will help... should be required reading.
Forum Etiquette: How to post data/code on...
_____________
Code for TallyGenerator
July 25, 2016 at 12:04 am
Is ApproverID a unique key in table [Navision].[dbo].[Radia Inc PS - LIVE$Approval Entry] ?
_____________
Code for TallyGenerator
July 24, 2016 at 9:11 pm
Here is the scrit to illustrate the point:
USE tempdb
CREATE TABLE #TableA (
ID INT IDENTITY(1,1),
Name NVARCHAR(50),
PRIMARY KEY (id),
)
CREATE TABLE #TableB (
REfID INT ,
Reference NVARCHAR(50),
FOREIGN KEY (RefID) REFERENCES #TableA (id)
)
DECLARE @Lastid INT,...
_____________
Code for TallyGenerator
July 24, 2016 at 7:36 pm
Viewing 15 posts - 1,276 through 1,290 (of 6,036 total)