Viewing 13 posts - 1 through 13 (of 13 total)
no that did't solved my problem.equivalent problem is solved in oracle through the query that i have initially posted .Then how to solve it in SqlServer?
April 15, 2010 at 4:30 am
Hi,
this query is giving error :
select id,name,dt from (select id,name,dt, max(dt) over (partition by id, name)
as max_date from temp2) where dt=max_date;
this query is fine ,but i have to select each...
April 14, 2010 at 7:51 pm
Hi,
actually concept behind this type of problem is new for me..i am confused how to start my query...
April 14, 2010 at 7:40 pm
create table emp1(id int);
create table emp2(id int);
values in both emp1 emp2 are inserted via "insert into table values(value)" command.
data are 10,11,12,13,14,15
March 31, 2010 at 9:43 pm
Hi,
really i was confused with the example, as i am new to trigger in SqlServer .Thanks for information.
February 28, 2010 at 10:05 pm
hi,
thanks for your valuable post.the command is working fine without any modification.
can u give me any link that deals with all the available commands in sqlcmd..like how to see in...
November 25, 2009 at 3:11 am
hi,
'sqlcmd /?' command gives the commands that are available in sqlcmd,but there is no any listing of 'backup' command or 'restore' command and its parameters.so how can i get all...
November 25, 2009 at 2:59 am
hi,
yes,backup is successfully created.
now can u help me how to retrieve (or restore) by database to another sql server database?i.e if i send the backup file to another system and...
November 23, 2009 at 5:08 pm
the link you provided is not so fruitful.it did'nt solved my problem.Also ,you gave the commands for backup:
backup database databasename to disk='C:\db.bak'.
But it too gave errors:
Cannot open backup device 'C:\db.bak'...
November 21, 2009 at 9:58 am
the link you provided is not so fruitful.it did'nt solved my problem.Also ,you gave the commands for backup:
backup database databasename to disk='C:\db.bak'.
But it too gave errors:
Cannot open backup device 'C:\db.bak'...
November 21, 2009 at 9:55 am
Viewing 13 posts - 1 through 13 (of 13 total)