Viewing 15 posts - 1 through 15 (of 28 total)
Thanks, the reason why i asked is because i don't see this new table in the original distribution database.
May 3, 2010 at 10:18 am
David, very interesting article, thank you.
Now i am wondering in which case do we need this code below?
Is this to keep snapshot files for each distribution database in the...
April 30, 2010 at 10:08 am
Nope, i jump to another issue and never had a chance to see where the problem is with this one. Still wondering why this is happening.
If you fon something please...
June 26, 2009 at 11:11 pm
Yes, i tried to copy to the temp table and it's the same thing.
Btw, i just fixed this using
SELECT * FROM dbo.LinkShareTransactions_Temp
WHERE ABS(Amount) = 0.00
In this case it did...
June 25, 2009 at 11:55 am
Lynn, isn't this Amount decimal(10,2)? And what do you mean to show you in sql?
June 25, 2009 at 11:29 am
The column definition:
Column_nameType LengthPrecScaleNullable
Amount decimal910 2 yes
June 25, 2009 at 10:59 am
The only query on that table will be:
SELECT TOP (@rowcount) TMP.ID, TMP.OrderID
FROM dbo.OldRecords TMP
WHERE TMP.IsDeleted = 0
ORDER BY TMP.ID -- I am doing this in order to get...
May 28, 2009 at 3:26 pm
Thank you for reply,
How about also to query sysjobhistory in MSDB to get output for the last time when the job run and insert into a file?
Something like:
select * from...
May 21, 2009 at 1:01 pm
I tested and it worked perfectly fine, thanks again for you time!
May 1, 2009 at 10:38 pm
Thank you very much all for your time spent on this!
I will get back as soon as i tested.
April 30, 2009 at 2:18 pm
That changes the requirements. The next question follows, do you only want to delete complete groups? If an order for 2 items has different delivery dates do you...
April 30, 2009 at 10:35 am
Sorry, maybe i did not explained correctly or did not provide enough information.
If any record in the orderid group has unit 89 then completly skip this orderid from purging and...
April 30, 2009 at 7:51 am
I understand, but this is not what i was asking.
Thanks anyway for your help!
April 29, 2009 at 9:09 pm
Thank you so much, one more question:
How can i completly eliminate from delete orderid = 2765 if it has UnitID = 89 and UnitID = 4 in this case for...
April 29, 2009 at 4:48 pm
Thank you for reply,
Can you tell me please what do you mean by saying "you need to implement an export (recommended)"?
Do you mean sort of archive before purge?
April 27, 2009 at 10:42 am
Viewing 15 posts - 1 through 15 (of 28 total)