Viewing 15 posts - 1 through 15 (of 87 total)
Julian,
I have checked the Execution plan and the estimated execution plan. The major chunk of time is taken by a Table scan on this view. It is not using my...
December 21, 2004 at 10:16 am
Sorry m8! Not exactly working on repos ...working on generating an xml for the component to parse...
In any case...lemme know if you need any info..maybe I can help.
Cheers!
September 4, 2004 at 11:46 am
Cheers m8...I guess that does the trick...but not exactly as i wanted...but i guess this is the best i can get with the time i have on my hands
Cheers,
September 2, 2004 at 6:50 am
Maybe its related to this...check this out in any case...
Cheers!
August 27, 2004 at 1:22 pm
Query seems to be fine ...Can you try creating DSN using ODBC driver with the following credentials and check if you are still able to access the database.
And pls dont give...
August 4, 2004 at 6:20 am
Pls send me your query after masking the logon credentials!
August 4, 2004 at 5:51 am
Julio,
Have you tried something like this...
Update DatabaseA.dbo.tableA A
SET A.col1 = B.col1
FROM OPENROWSET('MSDASQL', 'DRIVER={SQL Server};SERVER=YourServer;UID=username;PWD=urpwd', DatabaseB.dbo.TableB) AS B
WHERE A.col2 = B.col2
Can you try this out...and lemme know if it...
August 4, 2004 at 5:38 am
If you have access to both these tables then all you need to do is run a query ...something like this
Update db1.dbo.table1 A
Set col1 = B.col1
From...
August 4, 2004 at 5:10 am
I think that is exactly what this will return ....But it will take each login attempt as an user.
Cheers!
August 3, 2004 at 2:19 am
Ooops ....Sorry abt that!!
August 3, 2004 at 1:49 am
I understand what you are looking for here is something like
Average logged in Time : x Hrs xx Mins Max logged in Time: x Hrs xx Mins
for all users/sessions...
August 3, 2004 at 1:47 am
I understand what you are looking for here is something like
Average logged in Time : x Hrs xx Mins Max logged in Time: x Hrs xx Mins
for all users/sessions...
August 3, 2004 at 1:46 am
If its on the same server then all you need to do is fully Qualify the table name with the database name.owner name.table name.
If the table is on a different...
August 3, 2004 at 1:07 am
I understand what you are saying...and yes you can also use case like how WINASH has shown above...but my query
WHERE ((@var1 IS NULL AND LastName = LastName)...
August 2, 2004 at 8:32 am
Thats cool Brian! Didnt know that cud be done.
Cheers!
August 2, 2004 at 3:58 am
Viewing 15 posts - 1 through 15 (of 87 total)