Viewing 14 posts - 1 through 14 (of 14 total)
Thanks a lot.... Mark and kramaswamy........:-)
July 6, 2011 at 8:19 am
Tried but again giving the same error -
OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "The Microsoft Jet database engine could not find the object 'Testing$'. ...
December 14, 2009 at 5:50 am
It means what i am getting dirty or uncommitted records from second query (select top 10 * from Table1 With(NOLOCK).
Actually i am confused because of order by clause. When i...
October 21, 2009 at 11:13 pm
I am using VB.Net as frontend and SqlServer2005 as RDBMS.
It is client's requirement that s/he wants to see all the records before and after updating.
As Michale and chirag suggest either...
September 4, 2009 at 3:42 am
Hi,
I faced the similiar situation like yours and find a solution in a blog -
Here is the query which is using INFORMATION_SCHEMA views that returns both sides of all...
April 14, 2009 at 1:11 am
Eventhough it si not at all a good idea but you can use cursor if no other option left.
Please specify the exact requirement as Lynn said. so that we can...
April 6, 2009 at 6:18 am
can u give an example or exact scenario. it will help us to solve your problem in a better way.
April 3, 2009 at 7:07 am
Hi,
Please specify clearly what you want to do?
But you can do the following things -
Create indexes for tables and views.
You can do all your insert/update/delete/Select using SP.
When you fetch...
April 3, 2009 at 5:00 am
Yes you right EDVassie - i am creating SP but i have to use cursor to update these records. As I have to create the log file for each and...
April 1, 2009 at 10:07 pm
simplest way you can use is like this -
Example -
Create Table #Test(dt datetime , tm int)
Insert into #Test values(getDate(),1)
Insert into #Test values(getDate(),2)
Insert into #Test values(getDate(),3)
Insert into #Test values(getDate(),4)
Insert...
April 1, 2009 at 6:07 am
Thanks for the suggestion.
I worked on this approach and it works fine for me.
It improves update time by 40%.
Thanks again.
March 29, 2009 at 10:03 pm
I am giving you the exact scenario -
1. I have a tab control with 3 tabs on it.
2. 1'st tab has a user interface for record filtering.
3. 2'nd tab...
March 27, 2009 at 4:02 am
Actually I am working on a Retail management ERP.
User filter records using different search criteria’s and wants to updates these records.
This is the worst scenario that s/he might select all...
March 26, 2009 at 7:32 am
Viewing 14 posts - 1 through 14 (of 14 total)