Viewing 15 posts - 4,381 through 4,395 (of 5,504 total)
What requirement cannot be achieved with Lowells solution?
The BETWEEN clause will "fetch data for next 3 months" as per your requirement.
If you need more assistance you might want to...
February 1, 2010 at 12:21 pm
Standard answer for non-precise questions:"It depends"
If you import those sample data into one column: the variable length doesn't matter as long as the column is wide enough.
If you need to...
February 1, 2010 at 12:11 pm
Did you try the GROUP BY clause (for details please see BOL)?
February 1, 2010 at 12:05 pm
On my system the 2k5 templates are located at
"C:\Programs\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\sqlworkbenchprojectitems\Sql\Stored Procedure\"
It's easy to modify those templates.
February 1, 2010 at 11:19 am
Ray K (2/1/2010)
lmu92 (2/1/2010)
VERY UNIQUE PROBLEM: Updating Table with XML Data in SQL 2005
Updating Table with...
February 1, 2010 at 10:47 am
If you feel to have a look at a thread named
VERY UNIQUE PROBLEM: Updating Table with XML Data in SQL 2005
Updating Table with Column Type of...
February 1, 2010 at 10:34 am
The main reasons why I think you didn't get an answer yet:
The "sample data" you posted are obviously so huge that it takes forever to open that thread. I strongly...
February 1, 2010 at 9:49 am
sunil88_pal88 (2/1/2010)
So why has microsoft has made some opposite of TOP .They should also have made BOTTOM
They actually have. Sort of, at least...
But is doesn't have anything to do with...
February 1, 2010 at 9:40 am
Since you start "from scratch" you might want to consider storing the hierarchy data as nested sets. For details please search for "Celko nested sets hierarchy". It might be a...
February 1, 2010 at 7:02 am
Easiest way would be a calendar table holding each day in one column and the fiscal year information and other stuff you might need (e.g. work day yes/no, holidays) in...
February 1, 2010 at 6:52 am
Instead of relying on forum information you could use BOL (BooksOnLine, the SQL Server help system) to get the information you're looking for:
varchar [ ( n | max ) ]...
January 29, 2010 at 3:34 am
I would add that "feature" to the SQL script (so you can run and test it separately).
You could either store the result of each query in a temp table or...
January 28, 2010 at 2:01 pm
charipg (1/28/2010)
Please correct the below query..........select max(myDate) from
( select field_1 myDate from myTable
union all
select field_2 myDate from myTable
union all
select field_3 myDate from myTable)
If you add...
January 28, 2010 at 1:46 pm
charipg (1/28/2010)
I am not able to provide the sample data.can you pls provide the sample query?
You don't have to provide your real data. Get the basic concept and transform it...
January 28, 2010 at 1:19 pm
add
AND A.Piloto LIKE 'ACD%'
to your WHERE clause.
If that's not what you're looking for please provide sample data and expected results as described in the first link in my...
January 28, 2010 at 1:14 pm
Viewing 15 posts - 4,381 through 4,395 (of 5,504 total)