Viewing 15 posts - 10,441 through 10,455 (of 15,381 total)
waqqas.zia (10/9/2012)
Unfortunately due to data protection issues im unable to post any of my data or even samples of...
i have however found a work around,
Thanks...
October 9, 2012 at 10:15 am
No it doesn't depend. It may appear to be ordered correctly right now but there is no guarantee it will always be in the correct order. If you want ordered...
October 9, 2012 at 9:54 am
Can you post ddl (create table scritps), sample data (insert statements) and desired output based on your sample data? I think once we can see the problem and have something...
October 9, 2012 at 9:46 am
jocast (10/9/2012)
In a query is it the sameselect * from customers (nolock)
and
select * from customers with(nolock)
is the word "width" necessary?
Better yet, remove it entirely. It is not a magic...
October 9, 2012 at 9:01 am
Your data structure for this is going to cause you nothing but grief. How do you know what the "root" of the task is?
This is a running total type of...
October 9, 2012 at 8:33 am
Ahmed_07 (10/9/2012)
I Wanted to create a view with Order By clause so that the view to be ORDERED when I 'll use SELECT * query...
October 9, 2012 at 8:23 am
As previously suggested you should run a trace to see what actually hits your server.
Also, you did such a great job protecting yourself from sql injection EXCEPT for the querystring....
October 9, 2012 at 7:58 am
ronan.healy (10/9/2012)
still getting this errorMsg 208, Level 16, State 1, Line 1
Invalid object name 'IRBT2'.
Is that a table? In your original post you did not mention that table.
And fwiw you...
October 9, 2012 at 7:26 am
Oh holy cow of embarrassment....You are on a 64bit machine and trying to setup a DSN to a 32bit machine right? The DSN utility on a 64bit machine creates a...
October 9, 2012 at 7:15 am
vinay.varaala (10/8/2012)
in below query how to pick up only product code 'C'
select 1, 'UNLEADED', 'ABD00C', 'C', 'ULOOPPM', 5532.00 union all
select 2, 'UNLEADED', 'ABD00H', 'H', 'ULOOPPM',...
October 8, 2012 at 3:07 pm
Is this a report? If so, a calculated field would be easier.
If not, there are a few ways to deal with this. They all involve the basic premise of:
select...
October 8, 2012 at 3:04 pm
vinay.varaala (10/8/2012)
SELECT
p.Prd_ID,
p.[Product_name]
...
October 8, 2012 at 2:58 pm
vinay.varaala (10/8/2012)
I will explain it clearly from that first table unleaded product I want to sum up based on codetype like c,h and l.
output should be in 3...
October 8, 2012 at 2:49 pm
Yes at that point all the data is on the client. Run a trace while running that code. It will not run a new query when you read the next...
October 8, 2012 at 2:42 pm
Hi and welcome to SSC. What you have posted as desired output looks more like a report then the results of query. You have column group headers and column names....
October 8, 2012 at 2:19 pm
Viewing 15 posts - 10,441 through 10,455 (of 15,381 total)