Viewing 15 posts - 541 through 555 (of 1,253 total)
you will have to validate your data being inserted before inserting.
"Keep Trying"
November 4, 2008 at 12:43 am
Can u give us the table structures and sample data and explain your issue according to that?
"Keep Trying"
November 2, 2008 at 11:15 pm
check whthr this works
SELECT
ID AS ID,
Location AS Location,
SUM(Quantit) AS TotalQuantity,
SUM(Cost) AS TotalCoast,
D.MaxSaleDate
FROM
OrderData O LEFT OUTER JOIN
(SELECT ID, MAX(DATE) as MaxSaleDate FROM OrderData WHERE type =...
"Keep Trying"
October 31, 2008 at 5:04 am
GilaMonster (10/31/2008)
Chirag (10/31/2008)
Thank you Gail. That explains things clearly. So would the same apply to BLOB data. Would BLOB data be brought into memory and then modified?
Exactly the same. The...
"Keep Trying"
October 31, 2008 at 4:54 am
Sorry cant give u the whole query...
Why dont you use a derived query that just selects the max dates and the ID and then join it with the query that...
"Keep Trying"
October 31, 2008 at 2:52 am
GilaMonster (10/31/2008)
Chirag (10/31/2008)
"Keep Trying"
October 31, 2008 at 2:46 am
Hi Gail
Nice article... presented in very easy to understand manner
One question may not be entirely related to this topic
Say there is a big data modification (update statement) going on...
"Keep Trying"
October 31, 2008 at 12:50 am
my 2 cents
Since u can access only thru SSMS ...
Create a parameter table that stores the list of parameter values.
Create a parent procedure that fetches the parameter values from the...
"Keep Trying"
October 31, 2008 at 12:04 am
A "different" topic to write a article on.
"Keep Trying"
October 29, 2008 at 5:03 am
XML is not my strong point, but if you provide more details regarding your data and table structure maybe we cud try.
"Keep Trying"
October 29, 2008 at 4:48 am
We need more details BUT....
Select sum (Premium)
From MyTable
Group...
"Keep Trying"
October 29, 2008 at 4:45 am
You could write the alert related code in a stored procedure if you are using a stored proc to insert data. BTW what sort of alert did you have in...
"Keep Trying"
October 29, 2008 at 4:37 am
Any specific feature you plan to use in SQL 2008. If your application is running fine on SQL Server 2005 and you are'nt going to use SQL 2008 feature(s) then...
"Keep Trying"
October 29, 2008 at 4:32 am
identity column is the way to go. you can also look to increment it programatically.
"Keep Trying"
October 29, 2008 at 4:26 am
Viewing 15 posts - 541 through 555 (of 1,253 total)