Viewing 15 posts - 10,441 through 10,455 (of 15,374 total)
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
From what you have posted nobody can offer much help. The description is pretty vague and there is nothing to work with. Please see the first link in my signature...
October 8, 2012 at 2:12 pm
Don't shrink tempdb. You are asking for problems doing that. You can end up causing yourself all sorts of problems.
Here is one link that refers to the issues.
http://support.microsoft.com/kb/307487
http://sirsql.net/blog/2011/5/18/dont-shrink-tempdb.html
Search around for...
October 8, 2012 at 12:28 pm
Now for the mechanism you suggested to work robustly it would depend on the sql server client being able to verify back to the server that it has received the...
October 8, 2012 at 11:58 am
blakmk (10/8/2012)
what i mean is the mechanism that you are talking is handled by a background sql process. In sql many of these processes run asynchronously and not continuously
You have...
October 8, 2012 at 10:39 am
Viewing 15 posts - 10,441 through 10,455 (of 15,374 total)