Viewing 15 posts - 3,526 through 3,540 (of 6,036 total)
Greg, it was not about you at all.
It was about industry.
Industry which is in deep sh*t.
Machine computing is based on binary math. It's the way everything got processed in computers,...
_____________
Code for TallyGenerator
September 30, 2007 at 4:28 pm
September 30, 2007 at 2:56 pm
Logic here is simple:
1) formatting is user-dependent. One day they gonna request you to let different users have different formatting. What you gonna do?
2) Formatting requires string-processing. You have a...
_____________
Code for TallyGenerator
September 29, 2007 at 8:10 am
Un-bloody-believable!
How could possibly a dude having no idea about binary get any job in IT industry???
_____________
Code for TallyGenerator
September 28, 2007 at 7:12 pm
Hope you did not miss this statements:
"Updating fields in system tables can prevent an instance of Microsoft® SQL Server™ from running or can cause data loss. "
"On production systems, you...
_____________
Code for TallyGenerator
September 28, 2007 at 6:03 am
I could.
If you would explain in details what you are trying to modify in system tables.
_____________
Code for TallyGenerator
September 28, 2007 at 5:39 am
Yes, you can.
Just have SQL Server Installation disk handy.
You'll need it.
_____________
Code for TallyGenerator
September 28, 2007 at 5:29 am
FROM TableA a
INNER JOIN TableB b ON ...
WHERE NOT EXISTS (select 1 from TableC c ...)
_____________
Code for TallyGenerator
September 27, 2007 at 10:00 pm
Insert into TableA
Select b.firstname, b,lastname
FROM TableB b
WHERE NOT EXISTS
(select 1 from TableA a
where a.lastname = b.lastname and a.firstname = b.firstname
)
Same approach for TableC.
_____________
Code for TallyGenerator
September 27, 2007 at 9:44 pm
1. Update must go first. There is no need to update rows you just inserted.
2. Update must contain only INNER joins. If data is missing there is nothing to update....
_____________
Code for TallyGenerator
September 27, 2007 at 8:47 pm
1. You should not be using character based or integer based data for the dates... you should be using the DATETIME datatype. You really need to fix your...
_____________
Code for TallyGenerator
September 27, 2007 at 7:58 pm
I believe for filling dropdown you never need to filter by categoryID.
So I see here 2 SPs:
1st - without parameters and with 2 columns returned - for dropdown;
2nd - with...
_____________
Code for TallyGenerator
September 27, 2007 at 7:02 am
Not really good activity meter.
You can possibly have terribly busy server without a single transaction for a whole day.
From another side enormous number of simple transaction may take less than...
_____________
Code for TallyGenerator
September 27, 2007 at 4:20 am
Is this hint good enough?
http://blogs.msdn.com/khen1234/archive/2006/01/31/520724.aspx
_____________
Code for TallyGenerator
September 27, 2007 at 3:40 am
Lester, as I wrote that that must be done NOT ONLY FOR DATES.
Same method must be used for all non-string fields.
It used to be "convert to datetime" error.
Now, when datetimes...
_____________
Code for TallyGenerator
September 26, 2007 at 9:39 pm
Viewing 15 posts - 3,526 through 3,540 (of 6,036 total)