Viewing 15 posts - 2,116 through 2,130 (of 7,429 total)
In this case you may want to create an OUTPUT parameter to return SCOPE_IDENTITY() thru especially for apps as you can use COmmand Object and return with Execute No Records...
March 24, 2004 at 7:45 pm
Have you tried running the item that does kill it but watch what is happening during the process with Profiler?
Also, reading the KB articles I don't think SP3 fixes just...
March 24, 2004 at 7:43 pm
I know of nothing specific on Medical specifications. I did some checking around google and came up nill as well. I do know there are several groups trying to standardize...
March 24, 2004 at 3:38 pm
Ok, did you restore a full backup and then the first differential wih RECOVER or with NO RECOVER. If RECOVER did you restore the full backup first then the each...
March 24, 2004 at 3:21 pm
Try this
select * from
a
left join
b
on
a.pk_a = b.fk_a
left join
c
on
a.fk_c = c.pk_c OR
b.fk_c = c.pk_c
where
a.custid = "xxx"
March 24, 2004 at 2:34 pm
If your index is set up as unique (which I am assuming it is the primary key and would be) then no it already knows 1 value to find no...
March 24, 2004 at 1:25 pm
You lost me here:
The column I want to update is ‘ethnicityType’ in families with ‘code’ from RESEARCHethnic. However, families already contains some data which I do not want overwriting/replacing.
You are...
March 24, 2004 at 1:21 pm
Best answer see here http://msdn.microsoft.com/library/default.asp?url=/library/en-us/optimsql/odp_tun_1_3ws3.asp
March 24, 2004 at 1:08 pm
If there is a difference it will be insignificant in many cases (especially on an unique indexed field) but large datasets can do the EXISTS situation faster simple because it...
March 24, 2004 at 12:57 pm
My understanding is they support current version plus one version back (MSDN does not apply this). This is how they handle OSs and most all other items.
March 24, 2004 at 12:03 pm
Made notes in code.
select
IsNull([tblApCheckHist].[checknum],0) CheckNumber,
March 24, 2004 at 11:30 am
Yes. Double checking MSDN confirmed there is a language specific version for Chinese Traditional.
March 24, 2004 at 10:47 am
Add -S%1 to have it open the connection in QA.
For a full list of options do isqlw /? in a command prompt
March 24, 2004 at 9:10 am
Thank you very much, just wanted to make sure that potential issue was covered beforehand.
March 24, 2004 at 9:02 am
Try using the UNC path instead as the F mapped drive will not be visible to SQL Agent only the logged in user at the time the map is created.
'\\server\drive$\path\filename.bak'
March 24, 2004 at 8:41 am
Viewing 15 posts - 2,116 through 2,130 (of 7,429 total)