Viewing 15 posts - 4,756 through 4,770 (of 5,103 total)
The First /2.0 is a computed FORMULA for the median so it has to be DECIMAL or FLOAT
The Second is just a count of RECORDS(ROWS)!! so it can't be a...
February 16, 2004 at 3:08 pm
It looks that we are in synch today
February 16, 2004 at 2:20 pm
FROM BOL:
This is the precedence order for the Microsoft® SQL Server™ 2000 data types:
from the Precence list your datatypes "if can be converted...
February 16, 2004 at 2:09 pm
Try:
SELECT T.vruconfirmation,T.jobtype,T.jobid
FROM ttt T
JOIN(
SELECT jobid, Count(*)as Cnt
FROM ttt
GROUP BY jobid) Q ON Q.jobid = T.JOBID
WHERE Cnt = 1 OR (Cnt > 1 and vruconfirmation IS NOT NULL)
ORDER BY T.jobid
February 16, 2004 at 2:03 pm
It Depends if it is a DTS package that has the USE TRANSACTIONS and COMMIT ON SUCCESFUL PACKAGE COMPLETION (Package Properties --> Advanced Options) it will...
February 16, 2004 at 1:13 pm
you want to check this
February 16, 2004 at 1:07 pm
Sorry for the Bad news but this is HOW MS want you to fix it
February 16, 2004 at 12:54 pm
mssql_rules,
I think COST is the Key word here. The fact that you have HIGER Query cost does NOT means you have HIGHER IO!! set the STATISTICS IO ON and re-run your...
February 16, 2004 at 12:38 pm
Because you are trying to query a remote SQL server I would rewrite that code as:
SELECT a.Cnt
FROM OPENROWSET('SQLOLEDB','Apollo';'sa';'',
'SELECT COUNT(*) as Cnt FROM pubs.dbo.titles ORDER BY au_lname, au_fname') AS a
OR
Create...
February 16, 2004 at 12:12 pm
If the Update RATE is not TOO high (That means Test, Test and Test)
I would calculate at Update / Insert Time and save results on a DENORMALIZED Field!
so when you...
February 16, 2004 at 12:00 pm
This is my LAST time anwering questions that have been POORLY/INCORRECTLY Posted!
FROM BOL:
MOVE 'logical_file_name' TO 'operating_system_file_name'
Specifies that the given logical_file_name should be...
February 16, 2004 at 11:48 am
why do you have to use IN?
SELECT *
FROM TableName
WHERE Id1 = @ID1 AND ID2 = @ID2
February 13, 2004 at 2:39 pm
if you open QA and DRAG & DROP the Colums Folder into the Editor the Field List gets created for you. It doesn't get better than that
February 13, 2004 at 1:59 pm
OR
select column1,column2,3,4,n
from Survey1
UNION ALL
select column1,column2,3,4,n
from Survey2
UNION ALL
select column1,column2,3,4,n
from Survey3
February 13, 2004 at 1:44 pm
Viewing 15 posts - 4,756 through 4,770 (of 5,103 total)