Viewing 15 posts - 301 through 315 (of 375 total)
Did you try to insert the records retrieved from the view to a temp table to see if all of them are getting processed?
Another suggestion could be to eliminate as...
May 18, 2007 at 7:26 am
Maybe you can try to create a simpler vw_BudgetTotalPricesRevenuesTonnes view by removing all the fields you don't need for your update and see if this makes a difference. If the...
May 18, 2007 at 6:43 am
Well, I don't know if I am on the right track on this one but I had once a problem with a complicated view that under certain conditions did not...
May 18, 2007 at 5:57 am
Judging the smartness of the company by its financial performance is a weak indicator in my opinion. It might be smart to invest money in a company which is...
April 20, 2007 at 9:21 am
I modified the first view by removing the last INNER JOIN (which was not doing much anyway and the logic did not change) and now the WHERE clause on the view...
January 24, 2007 at 11:10 am
The view is working fine. Just the WHERE from the view is going nuts. It is some kind of the bug in the SQL.
But if you would like to have...
January 24, 2007 at 8:34 am
Colin,
Thanks a lot.
I just hoped I missed some built in feature that can get this info easily...
March 17, 2006 at 7:23 am
Ok, let me ask a set of questions that can lead to where my thinking is going...
Lets assume I have a stored procedure that reads some data from a physical...
March 15, 2006 at 2:42 pm
Thanks for reply but this is not what I need.
Maybe I did not write properly what I am looking for.
The sqlbytes in syscacheobjects shows how much memory SQL Server allocated...
March 15, 2006 at 10:41 am
Daniela, Thanks for your reply but I looked at SQL Profiler before and there is nothing about memory.
March 14, 2006 at 10:20 am
DECLARE @ID_list VARCHAR(100)
SET @ID_list = '100,106,103'
UPDATE tablename
SET
State = 10
WHERE CHARINDEX(CAST(ItemID AS CHAR(3)), @ID_list) > 0
The problem with this approach is that it is only going to work if the length...
March 14, 2006 at 9:56 am
Did you try this?:
INSERT INTO data51..inventory
(
field1,
field2
)
SELECT
field1,
field2
FROM data01..inventory
The URL for downloading BOL:
March 13, 2006 at 1:01 pm
Hugo,
You are right that this is somewhat (incorrectly) documented in the RAISERROR. This still does not logically explain the 399/400 magic number. More logical would be 512 = 256 * 2...
March 13, 2006 at 9:27 am
PS.
I casted the Amount to INT, because your post kind of indicated this. If you want the cents included you have to specify how do you want them displayed. with...
February 28, 2006 at 7:01 am
SELECT
CAST(CustName AS CHAR(10)),
REPLICATE('0', 13 - LEN(CAST(CAST(Amount AS INT) AS VARCHAR))) + CAST(CAST(Amount AS INT) AS VARCHAR),
REPLACE(CONVERT(CHAR(10), ConfirmDate, 103), '/','')
FROM table1
You may have to be careful with the...
February 28, 2006 at 6:58 am
Viewing 15 posts - 301 through 315 (of 375 total)