Viewing 15 posts - 16 through 30 (of 440 total)
HTML has nothing to do with datatype. You just have to append the value if BIGINT in HTML tags.
When it comes to the ASP.NET, finally IIS converts the ASP.NET page...
April 16, 2009 at 8:20 pm
Hi Flo,
You are very positive, to give some help on the question:-) I like that...
April 16, 2009 at 7:59 pm
One question, why can't you generate the Database diagrams on the Production Server when no one is accessing the database? Does is take too many resources and time?? I never...
April 16, 2009 at 7:56 pm
April 16, 2009 at 10:31 am
Hi Vladan
Thank you for your explanation..
April 16, 2009 at 10:30 am
Hi Chris,
tahnk you for giving the link to the article it is very good..and very in-depth...
April 16, 2009 at 10:25 am
Its a lerning curve for me also 🙂 to get my hands on SQL!!!
April 16, 2009 at 10:17 am
forgot to post the table structure:
CREATE TABLE TT
(Year_Purchased NUMBER, Total_Purchases NUMBER)
INSERT INTO TT VALUES(2005,150);
INSERT INTO TT VALUES(2006,400);
INSERT INTO TT VALUES(2007,490);
INSERT INTO TT VALUES(2008,580);
April 16, 2009 at 9:26 am
Check out the below query
SELECT a.Year_Purchased, a.total_purchases, sum(b.total_purchases)
FROM TT a
CROSS JOIN TT b
WHERE (b.Year_Purchased <= a.Year_Purchased)
GROUP BY a.Year_Purchased, a.total_purchases
ORDER BY a.Year_Purchased, a.total_purchases
April 16, 2009 at 9:23 am
are you going to execute this query in Front-End application or any Reporting system?
April 16, 2009 at 9:20 am
In addition to the Gsquard
Couple of questions:
1) Do you know how many records you are exepecting for each "Store Material"?
2) In your output "Qty" is 1000 i.e. Max Qty of...
April 16, 2009 at 9:18 am
Casper (4/16/2009)
They would...
April 16, 2009 at 9:05 am
use BCP
exec master..xp_cmdshell 'bcp database.owner.tablename out outputfilename -c -t "," -S servername -T'
April 16, 2009 at 8:51 am
Casper (4/16/2009)
I am using the Pubs DB as an example to help phrase my question.
Query Example:
SELECT EMPLOYEE.fname, JOBS.job_desc, JOBS.job_id
FROM dbo.employee AS EMPLOYEE
INNER JOIN dbo.jobs AS JOBS
ON EMPLOYEE.job_id =...
April 16, 2009 at 8:45 am
Viewing 15 posts - 16 through 30 (of 440 total)