Viewing 15 posts - 1 through 15 (of 63 total)
Try this conn. string
"Provider=sqloledb;Data Source=Srvr;Initial Catalog=DB;User Id=Usr;Password=PWD"
MW
June 23, 2003 at 12:02 pm
As Henery pointed out, its better to handle the situation at app. level
but if you must you can use this proc to view and kill processes
I use the combined...
June 20, 2003 at 6:47 pm
quote:
Hey guys,This is very interesting. The where statement influencing the quesry optimization.
Let's get real!!!! MIcrosoft is very stupid... they can have had...
June 20, 2003 at 11:17 am
Maybe you left out something when you pasted this query,
but I don't see this table joined with any of your other tables
(select poprj_uid from dbo.PO_Projects) as po_projects
The other thing I...
June 20, 2003 at 11:01 am
1, Yes, if any of your param. is NULL existing col. value will be used
But non of your parmas. can't be NULL as you have it now
...
June 19, 2003 at 5:32 pm
Ref. article
http://msdn.microsoft.com/library/default.asp?url=/library/en-s/acdata/ac_8_qd_12_3164.asp
you can also use the openrowset function to update remote tables
Update
OpenRowSet('SQLOLEDB','SERVER';'UserName';'Password',
'Select au_id, au_fname
...
June 19, 2003 at 3:02 pm
Select a.account_id, a.bill_contact, a.bill_address, cc.cc_number, cc.cc_type, cc.cc_exp
From Account a, (Select *
From Credit_Card) As...
June 19, 2003 at 11:25 am
Within your update event (click button event)
Make a call to your proc. passing it your variable value as a param.
First instantiate ADO's command objects to make your proc. call
...
June 19, 2003 at 10:43 am
quote:
Tim:Index covering is for non-clustered indexes, but in this case the aggregate
function would force index covering b/c the optimizer in almost all...
June 19, 2003 at 8:25 am
In most cases, Index selection is based on SARGs
which is determined by your [WHERE] clause.
The rule is that for an index to be considered by the optimizer, at least
the first...
June 18, 2003 at 7:24 pm
IF Exists(Select Billing
From Table
Where...
June 18, 2003 at 2:30 pm
Check if your table has trigger or other constraints which may cause
Insert and update performance issue.
I run a test on a server with 1gig mem and a table that has...
June 18, 2003 at 1:59 pm
You can use a derived table like this
Select Sum(T0.Docamnt)+T1.Docamnt_Sum As Total_Sum, T1.Docamnt_Month As Unique_Month
From Table1 T0,
(Select Sum(Docamnt) As Docamnt_Sum,...
June 18, 2003 at 1:48 pm
DBCC CHECKIDENT will create a duplicate Identity values
Ex. Id_no, Name
1 Test1
2 ...
June 18, 2003 at 11:35 am
Viewing 15 posts - 1 through 15 (of 63 total)