Viewing 15 posts - 676 through 690 (of 1,217 total)
Mark,
I think you should give us more information if you want to receive useful answer. At the moment, everybody is groping in the dark, not knowing what you need and...
August 4, 2006 at 12:57 am
You have written the SQL directly int command window, but in this case it is OK - no need to use stored procedures with such simple commands. Maybe you could...
August 2, 2006 at 1:31 am
Just to avoid confusion - what is not supported are only old syntax left and right joins:
"In earlier versions of Microsoft® SQL Server™ 2000, left and right outer join conditions...
August 1, 2006 at 1:22 am
I agree with what Antares and Mark posted; just adding a few words to it. Core of the developer's question is :
But doesn’t it seem logical that the...
July 31, 2006 at 8:32 am
Hello Ed,
please explain this in more detail:
"Each of those records should return the lowest Receipt_Ctrl# for Customer_code (aka the first receipt ever done to the customer) and the Receipt_Date needs...
July 31, 2006 at 8:10 am
My post is called IT Project Manager, which in fact means, that I'm DBA, user support for the software running on SQLS (information system), report generator, and several other things......
July 31, 2006 at 7:02 am
On a sidenote, although you can write the SQL directly into the job step, because of performance, maitainability and reusability it is often to your advantage to create a stored procedure from your...
July 31, 2006 at 6:37 am
This question is quite common on these forums, you should be able to find some answers... but in short, the answer is NO, you can't do that in SQL Server....
July 25, 2006 at 7:13 am
Hello Phani,
as the requirements are beginning to be complicated, I would suggest that you go with the simplest solution
select com_name, off_name, usr_name,
sum(case when status = 'waiting' then amount else 0...
July 20, 2006 at 8:58 am
I'm not sure what you need, but you could try to read following topics in BOL:
SUBSTRING, CHARINDEX, PATINDEX, REPLACE ... and possibly some other string functions. These functions allow you to find what character is on...
July 20, 2006 at 1:39 am
"I need a way to say 'enough' after 10."
Have you considered SET ROWCOUNT?
I'm not saying this is the best way to go, but it surely stops you after required number...
July 19, 2006 at 8:17 am
Hmm.. what is an "answer set"? Does it always have 6 rows in the table for each inspection? Why and what is the difference between these rows? Which of the...
July 18, 2006 at 8:45 am
When creating a table, you need to know not only column names, but also data types.
Generally, creating table structure based on data in another table is not considered good practice. You...
July 18, 2006 at 5:31 am
Hello,
maybe the best way of correcting this error would be to rewrite the procedure without cursors. If you post the code here, we can try to find some set-based solution. There are...
July 18, 2006 at 5:24 am
I am a bit surprised by some things in this article... for example:
"Generally, the rule of thumb is to have as much as RAM as your data file is."
Is it...
July 17, 2006 at 6:03 am
Viewing 15 posts - 676 through 690 (of 1,217 total)