Viewing 15 posts - 2,311 through 2,325 (of 2,452 total)
have a read of the following two articles..hopefully it will give you some ideas
July 26, 2010 at 12:44 pm
VM-723206 (7/26/2010)
declare @table table (LengthOfPincode int, AddZeros varchar(10))
insert into @table values (1,'00000')
insert into @table values (2,'0000')
insert into...
July 26, 2010 at 6:38 am
Raghavender (7/26/2010)
Sorry...not null values its showing no values.
SELECT instance_name, verified_name
FROM dbo.Table1
WHERE ...
July 26, 2010 at 5:44 am
Interesting thoughts in Chapter 6
http://www.red-gate.com/specials/Ebooks/Defensive_Database_Programming.pdf
July 24, 2010 at 4:32 pm
MrCapuchino (7/24/2010)
Thanks Everyone
You are welcome....out of cuiriosity what did you decide to use?
July 24, 2010 at 1:12 pm
Hi
Not sure sure if this is what are you are trying to acheive...but this may give you a few ideas
For future reference you will find you will get better...
July 24, 2010 at 8:54 am
sanujss (7/23/2010)
I want the result to be shown like
Priyan Zid...
July 24, 2010 at 2:38 am
Steve
No probs...as Jeff says you must "obey all the rules"...good luck with your Boss on this one.
fyi...I am still xref'ng against the vendors results to "prove" my results...cant go live...
July 22, 2010 at 10:10 am
Truth is, it doesn't really matter, especially in a smaller environment, so long as everyone who works on your system is on the same page. You really want to...
July 22, 2010 at 9:58 am
https://www.sqlservercentral.com/blogs/lynnpettis/archive/2009/03/25/some-common-date-routines.aspx
Good article by Lynn Pettis above that should get you started
July 21, 2010 at 2:35 pm
IF OBJECT_ID('dbo.Stock_TransactionsEx') IS NOT NULL
DROP TABLE [Stock_TransactionsEx]
GO
CREATE TABLE [Stock_TransactionsEx](
[ProductID] [int] NOT NULL,
[QuantityPurchased] [int] NOT...
July 21, 2010 at 8:32 am
LutzM (7/20/2010)
But before giong all crazy make sure this code will produce exactly the same result like the vendors code. First of all, the results have to be correct. Performance...
July 20, 2010 at 12:06 pm
Extraordinary..........:w00t:
Running on SQL 2000...7 year old box with 4gb RAM
100K products
20M transaction lines
sub 1 minute !!!!
beats the hell out of the vendor's app (2½hrs)...but that sits on a different type...
July 20, 2010 at 9:15 am
Hi Lutz....think you may have cracked it....many thanks.
Will need to run against production and see how well it performs on 100K products and 20M transactions....will post back.
Graham
July 20, 2010 at 2:03 am
LutzM (7/19/2010)
I'll have...
July 19, 2010 at 11:11 am
Viewing 15 posts - 2,311 through 2,325 (of 2,452 total)