Viewing 15 posts - 12,856 through 12,870 (of 15,381 total)
guerillaunit (3/5/2012)
I'd like to divide the statement into separate subscripts because the subscripts need to be processed in sequence. I was opening to use the GO command so...
March 5, 2012 at 1:05 pm
You could also add a left to the order by in my example if your real data is longer than 1 character.
order by
case left(MyChar, 1) when '!' then 1
...
March 5, 2012 at 10:50 am
Here is another way of doing something similar to the previous example.
create table #Chars
(
MyChar char(1)
)
insert #Chars (MyChar)
values
('!'), ('"'), ('$'), ('?'), ('@'), ('^'), ('{'), ('>'), ('1'), ('2'), ('3'), ('4'), ('5'), ('6'),...
March 5, 2012 at 10:46 am
Jonathan AC Roberts (3/5/2012)
Sean Lange (3/5/2012)
Jonathan AC Roberts (3/5/2012)
drew.allen (3/5/2012)
Jonathan AC Roberts (3/5/2012)
Create a function to split a string into a table:
The original question was about taking multiple values and...
March 5, 2012 at 9:43 am
Jonathan AC Roberts (3/5/2012)
drew.allen (3/5/2012)
Jonathan AC Roberts (3/5/2012)
Create a function to split a string into a table:
The original question was about taking multiple values and storing them in a single...
March 5, 2012 at 9:34 am
LutzM (3/5/2012)
If you decide to go for the "split string solution", at least use the "fast lane"[/url] and not the "pedestrian walk" 😉
+1
March 5, 2012 at 8:48 am
Did you try it??? Of course it won't work. There are a number of problems with that, not the least of which is you can't have a use statement in...
March 5, 2012 at 8:45 am
Well you already have the OBJECT_ID so it is pretty simple.
SELECT OBJECT_NAME(ep.major_id) AS [ObjectName],
CAST(Value AS nvarchar(500)) AS [MS_Description]
,OBJECT_SCHEMA_NAME(ep.major_id) as SchemaName
FROM sys.extended_properties AS ep
WHERE ep.class = 1 AND ep.minor_id = 1
ORDER...
March 5, 2012 at 8:40 am
In my case, I need to get a value into the view from which to filter the data.
Are you using this parameter as a where clause? It sounds like that...
March 5, 2012 at 7:54 am
Or you could make it more of a table type structure.
SELECT COUNT(assignment) AS ShiftCount, 'FirstShift' as ShiftDescription
FROM tb_DNM_1_employee
WHERE (assignment = '7') and (rank = '1')
union all
SELECT COUNT(assignment), 'SecondShift'
FROM tb_DNM_1_employee
WHERE (assignment...
March 2, 2012 at 3:24 pm
Thanks for posting clean ddl and sample data...goes a long way!!!
I am not totally clear if you wanted the literal "BLANK" or an empty string so I wrote it both...
March 2, 2012 at 12:41 pm
Hi and welcome to SSC. It is very unclear what you trying to do here. Take a look at the first link in my signature about how to best post...
March 2, 2012 at 12:30 pm
Did u look at BOL? http://msdn.microsoft.com/en-us/library/ms177541.aspx
SELECT OBJECT_NAME(ep.major_id) AS [ObjectName],
CAST(Value AS nvarchar(500)) AS [MS_Description]
FROM sys.extended_properties AS ep
WHERE ep.class = 1 AND ep.minor_id = 1
ORDER BY OBJECT_NAME(ep.major_id)
March 2, 2012 at 12:25 pm
Best place to start would be the first link in my signature.
March 2, 2012 at 12:13 pm
You are welcome. Hope you were able to tweak to get what you needed.
March 2, 2012 at 8:17 am
Viewing 15 posts - 12,856 through 12,870 (of 15,381 total)