Viewing 15 posts - 16 through 30 (of 46 total)
Indeed Ramma, a difficult situation , but I was just wondering if u had a network problem.... but I suppose you may know (your problem) better...
April 7, 2006 at 2:01 am
Do you need to temporarily keep a dataset came by a query?
You can do this, using a temporary table:
CREATE TABLE #tempTable ( Value INT, i INT identity(1,1) )
USE...
April 6, 2006 at 5:27 am
Fortunately, seems to have hapy end.... here.
But,.... i have some questions...
Under which circumnstances you SQL Server was corrupted?
How did u realise that all the DBs...
April 6, 2006 at 5:01 am
Suppose that we have the following data in a table named Table1.
id Name
----------------
1 Sanket
2 Sachin
3 Kishan
4 Sanket
5 Ram
6 sachin
We see that the name Sanket occurs 2 times:
id Name
----------------
1...
April 6, 2006 at 4:38 am
You need the max date... per class i suppose?
What if for tha same class you have 2 or more rows with same max date?
Please.... be more specific, even the result...
April 6, 2006 at 4:04 am
ok... Farrel...
Now, for the JOIN syntax question... the syntax is:
< join_type > ::=
[ INNER | { { LEFT | RIGHT | FULL...
April 5, 2006 at 9:32 am
@Date + ' 23:59:59' performs date arithmentic calculations: adds to the @date 23 h, 59 min and 59 secs...
April 5, 2006 at 9:01 am
Write a sp "EndOfDay" or update the current (I believe you use one, to transfer the data into history table) to do the following:
-After tranfser and delete the rows in the...
April 5, 2006 at 8:39 am
CREATE FUNCTION CustomersByContinent (@Continent varchar(30))
RETURNS TABLE
AS
RETURN SELECT dbo.WhichContinent(Customers.Country) as continent, customers.*
from customers
where dbo.WhichContinent(Customers.Country) = @Continent
GO
--examples of Calling the function
select * from...
April 5, 2006 at 8:26 am
for one more time u r not clear.... restructure and apply again.
April 5, 2006 at 7:45 am
Yes, of cource I can tell you what Stored Function Tables are (i've worked on these maths structs).... if you would be more polite!!!!!!!!!!!!! TO PEOPLE THAT TRY TO HELP...
April 5, 2006 at 7:16 am
First of all we must say two-three things:
1. The 'i' is just a sequencial number from 1 to the number of rows.
2. When we execute a query like this "select...
April 5, 2006 at 6:23 am
Viewing 15 posts - 16 through 30 (of 46 total)