Viewing 15 posts - 166 through 180 (of 363 total)
[font="Verdana"]1. Select the distint records from original table and insert them into temp table.
2. Truncate the original table and insert the al records from Temp table into original table.
3. Then...
May 20, 2008 at 7:02 am
[font="Verdana"]I guess, you might have missed some join. Post table structure and sample data.[/font]
May 20, 2008 at 6:48 am
[font="Verdana"]If possible post the table structure of both the tables.
Mahesh[/font]
May 20, 2008 at 6:38 am
[font="Verdana"]With the help of Output parameter you can fetch the results. In SP_1 declare the parameter as Output and you can get them into SP_2.
Mahesh[/font]
May 20, 2008 at 4:56 am
[font="Verdana"]Might be I have posted some wrong information, but once our DBA had asked us to make a habit of it. (It was my mistake then, that I didn't gone...
May 19, 2008 at 10:24 am
May 19, 2008 at 10:20 am
[font="Verdana"]Yup, condition can not be placed on Drop statement.[/font]
May 19, 2008 at 7:22 am
[font="Verdana"]Post your table structure with sample data and the stuff you wants to do, so that we can try o give you the perfect solution.
Mahesh[/font]
May 19, 2008 at 7:11 am
[font="Verdana"]
...But I want Browser Back Button Fuctionality ,At backend how it works.
Where it stores information about previous pages.
...
As I already said, it has nothing to do with backend. Its a...
May 19, 2008 at 6:15 am
[font="Verdana"]Why do you need such duplicate values into your table? This can be done easily, but let us know the exact stuff you wants to do on a table. Coz...
May 16, 2008 at 8:25 am
[font="Verdana"]
...row number function not supported in sql 2000
Row_Number() is one of the new feature introduced in SQL Server 2005.
Mahesh[/font]
May 16, 2008 at 6:57 am
[font="Verdana"]
...If I was to open a TRAN within a ADO connection, and then call a Sproc within the TRAN that has its own TRAN server-side, if the Sproc's TRAN fails,...
May 16, 2008 at 6:52 am
[font="Verdana"]Try Bulk Insert as well. Syntax:
Bulk Insert {Table Name}
From {File Name with complete path}
With {Different Hints}
For more information on Bulk Insert refer BOL and the below URL as well.
http://msdn.microsoft.com/en-us/library/ms188365.aspx
Mahesh
[/font]
May 16, 2008 at 6:47 am
[font="Verdana"]Well in that case change the connection type and try. This is to just confirm where the problem is.
Mahesh[/font]
May 16, 2008 at 6:36 am
[font="Verdana"]The error is self explanory. The table count in you query is exceeded. Why and what kind of data you need in a single view from more than 260 tables?
Explain...
May 16, 2008 at 6:32 am
Viewing 15 posts - 166 through 180 (of 363 total)