Viewing 15 posts - 4,996 through 5,010 (of 15,381 total)
jamesheslin123 (5/6/2014)
I want to select Order#'s...
May 6, 2014 at 9:31 am
vamsye (5/6/2014)
FROM SYS.SQL_MODULES WHERE [OBJECT_ID] = OBJECT_ID(@OBJECTNAME)
I know I can use SP_HELPTEXT to get linebreaks, The reason I want to use this is I can exclude comments section from...
May 6, 2014 at 9:30 am
ChrisM@Work (5/6/2014)
DROP table #Sample
Create table #Sample (Empid int...
May 6, 2014 at 9:26 am
vamsye (5/6/2014)
May 6, 2014 at 9:25 am
Stefan Krzywicki (5/6/2014)
GilaMonster (5/6/2014)
Stefan Krzywicki (5/6/2014)
Maybe it is just that if a split has occurred, NOLOCK can return bad data, even if the split happened awhile ago?
A scan under...
May 6, 2014 at 8:59 am
pgmoschetti (5/6/2014)
May 6, 2014 at 8:40 am
KGJ-Dev (5/6/2014)
Thanks for your reply.
could you please help me on making the below query to fetch top 5000 records. currently it only take 6 records.
SELECT *
FROM
(
select Val,Cat,ROW_NUMBER() over (partition...
May 6, 2014 at 7:58 am
pgmoschetti (5/6/2014)
Thank...
May 6, 2014 at 7:40 am
Nassan (5/6/2014)
May 6, 2014 at 7:38 am
aajavaherian (5/5/2014)
If Linda changes her name, couldn't you just query her name and update the table with an update statement?
You could...but that defeats the purpose of relational data. Consider what...
May 6, 2014 at 7:17 am
For anybody else wanting to view this query I formatted it.
SELECT DISTINCT FC.CASE_ID
,UPPER(FC.CASE_NUMBER) AS CASE_NUMBER
,UPPER(REPLACE(FC.CASE_SHORT_TITLE, CHAR(13) + CHAR(10), '')) AS CASE_SHORT_TITLE
,FC.CASE_STATUS_DESCR
,FC.CASE_TYP_DESC
,FC.CASE_SUB_TYP_DESC
,UPPER(AJ.DISPLAYNAME) AS JUDGE
,UPPER(PP.DISPLAYNAME) AS PARTY_DISPLAYNAME
,UPPER(AP.ATTORNEY_DISPLAYNAME) AS ATTORNEY_DISPLAYNAME
,CASE
WHEN RC_PARENT.PARENT_CASE_ID IS...
May 5, 2014 at 2:47 pm
vamsye (5/5/2014)
I don't think this solves my question.
What exactly is the question? It seems like you want a list of filtering predicates? The sql you posted has multiple select statements....
May 5, 2014 at 2:41 pm
aajavaherian (5/5/2014)
May 5, 2014 at 2:36 pm
Phillip.Putzback (5/5/2014)
May 5, 2014 at 12:15 pm
DaveK2014 (5/5/2014)
That was it I didn't have it on the first section.
Glad that worked for you!!
I don't know of any other way to preform what I need to do other...
May 5, 2014 at 8:21 am
Viewing 15 posts - 4,996 through 5,010 (of 15,381 total)