Viewing 15 posts - 6,181 through 6,195 (of 10,144 total)
You should consider using CTE's for this query, to make it more readable if nothing else:
;WITH
A AS (SELECT rn = ROW_NUMBER() OVER(PARTITION BY NIF_ANTIGO ORDER BY Cod_Bairro),
* -- substitute...
June 26, 2012 at 7:56 am
hnkumar (6/26/2012)
I'm facing a strange problem. We have 2 queries to fetch data between dates. However both queries are giving different values. First query is giving 8987...
June 26, 2012 at 7:44 am
You can't use dynamic SQL in a function - if it was valid dynamic SQL, it would return an error. What it's doing is creating a string:
A.NIF_ANTIGO NOT IN
('SELECT...
June 26, 2012 at 6:58 am
DATEADD(dd, -1, @year + '-' + 'select * from mon_allstat('+ b.shpdate + ')' + '-01')
This isn't valid syntax.
Can you post the structure of function mon_allstat()?
June 26, 2012 at 6:17 am
Duncan Pryde (6/26/2012)
June 26, 2012 at 6:06 am
sambireddy chirra (6/26/2012)
In my Requirement EmpId in Employee table have 101, same refearence table Employee_Details have 1011 (1012,1013 ) like . how it possible for the below query.
select *...
June 26, 2012 at 5:46 am
river1 (6/26/2012)
It Does not matter what is the value, but it most be a value from the field
SELECT *
FROM
(SELECT
rn = ROW_NUMBER() OVER(PARTITION BY NIF_ANTIGO ORDER BY Cod_Bairro),
[NIF_ANTIGO],...
June 26, 2012 at 5:44 am
Lowell (6/26/2012)
June 26, 2012 at 5:18 am
river1 (6/26/2012)
...As to the value of cod_bairro it can retrieve any of them. I don't mind
Why return it at all, if you don't care about the value?
June 26, 2012 at 4:47 am
river1 (6/26/2012)
How can I return a distinct...
June 26, 2012 at 4:35 am
Jeff Moden (6/25/2012)
ChrisM@Work (6/25/2012)
SELECT
EmployeeID,
Email,
DomainLHS = SUBSTRING(Email, x.PosStart,x.PosEnd-x.PosStart),
DomainRHS = SUBSTRING(Email, y.PosStart,y.PosEnd-y.PosStart)
FROM @t
CROSS APPLY (
SELECT PosStart = 1+CHARINDEX('@',EMAIL,1),
PosEnd = NULLIF(CHARINDEX('.',EMAIL,CHARINDEX('@',EMAIL,1)),0)
) x
CROSS APPLY (
SELECT PosStart =...
June 26, 2012 at 3:29 am
How many rows are returned by each of the following queries:
-- query 1
SELECT vw.SourceSiteID
FROM dbo.PNTSOURCEM_PLYSOURCEM vw
WHERE vw.SubHabitat LIKE N'%\WUS'
-- query 2
SELECT vw.SourceSiteID
FROM dbo.PNTSOURCEM_PLYSOURCEM vw
INNER JOIN sde.POLYNPDESSURVEY ps ON...
June 26, 2012 at 3:23 am
;WITH SampleData AS (
SELECT InputString = 'UMA Titanium Temporary Hex Cylinder Product Code: 11-000300 <span style="color:#f00;">Availability: 6/15/2012</span>' UNION ALL
SELECT 'UMA Hex Cylinder Product Code: 11-000200 <span style="color:#f00;">Availability: 8/2012</span>' UNION...
June 26, 2012 at 3:11 am
If the query above doesn't match the spec, then you can still make a big improvement to the design by rearranging the two correlated subquery filters. You don't need to...
June 26, 2012 at 2:13 am
The correlated subqueries in the output, and the correlated subqueries in the WHERE clause, are correlated on different columns. Focussing on Author, here's the output query:
SELECT BookAuthorName= LTrim(Rtrim(STUFF((
SELECT ',' +...
June 26, 2012 at 2:09 am
Viewing 15 posts - 6,181 through 6,195 (of 10,144 total)