Viewing 15 posts - 751 through 765 (of 7,429 total)
Wasn't 100% sure which columns went with which tables but try this
Declare @JOnum as char(10)
Set @JOnum = 'I2B98-0000'
SELECT
jodbom.fjobno
,jodbom.fbompart
,jodbom.fbomrev
,jodbom.fbomdesc
,jodbom.fparent
,jodbom.fparentrev
,jodbom.factqty
,jodbom.fbommeas
,jodbom.fqty_iss
,qalotc.fclot
,rcitem.fccompany
FROM
dbo.jodbom jodbom
LEFT JOIN
dbo.qalotc qalotc
JOIN
dbo.rcitem rcitem
ON
rcitem.fReceiver + rcitem.fItemNo = qalotc.fcdoc AND
rcitem.fctype...
March 28, 2007 at 8:56 am
Yes I have to do this often to free the virtual logs in SQL 2000 myself before a shrink will occurr.
March 28, 2007 at 8:46 am
If there are ongoing transactions into the transaction log it may not issue a checkpoint (does not truncate however even then) so the log will be marked for use. So...
March 27, 2007 at 2:25 pm
I would set up a test scenario on another server and make sure you get the condition you want to have happen first. (QA the code)
March 27, 2007 at 12:47 pm
I always heard it was women you put on the job.
Also I think Steve's comment which I will try to check is that adding people is not always the answer.
Besides...
March 27, 2007 at 12:09 pm
Have that book myself and it is really good. It depends on the project and the needs to be met. Sometime you have to readjust your schedules because you will...
March 27, 2007 at 12:00 pm
I know of no hard in stone from MS doc like you want. As for aliasing thou I as well never alias a column name unless there are collisions like...
March 27, 2007 at 11:51 am
Looks fine to me and I tested a similar setup with no issues. What is happening that is not as you expect?
March 27, 2007 at 11:47 am
RSS is "Reporting Services Script" file which is similar to JScript where RDL is "Report Definition Language". I use it to deploy RDL files all the time. However you have to...
March 27, 2007 at 11:34 am
In applications that have to be fully portable between multiple database backends or talk to multiple types of backends at the same time, better off staying in the apps code...
March 27, 2007 at 11:17 am
Sounds like maybe it isn't null but maybe blank. Try changing both lines to this
WHEN NullIf(@ReferenceRange,'') IS NULL THEN NULL
March 27, 2007 at 11:14 am
I thought officially Jet is dumpped just not all support on it yet has been dumpped. No more MDAC updates at all since 2.8a 2 years ago (as I recall).
March 27, 2007 at 11:10 am
Not to my knowledge (at least not directly from T-SQL). You may find a good way using SQL-DMO or SQL-SMO to do this but I don't have an example to provide...
March 27, 2007 at 9:11 am
First off you are probably getting due to the fact tblMain.colNumber is a numeric or integer data type where you comparison value is a character type thus a type mismatch...
March 27, 2007 at 8:40 am
SQL will not give up memory as it is using for the buffers and caches. This is not an issue but can cause some contention becuase of the fact it...
March 27, 2007 at 8:27 am
Viewing 15 posts - 751 through 765 (of 7,429 total)