Viewing 15 posts - 481 through 495 (of 748 total)
Thank you in advance, here is a sample:
CREATE TABLE tbl
(
ID int,
[Name] varchar(50)
)
insert into tbl (ID, [Name]) values(1, 'John Doe')
insert into tbl (ID, [Name]) values(2, 'John Smith')
insert into tbl (ID, [Name])...
July 23, 2010 at 1:25 pm
Slick84 (11/17/2008)
I had to click on REMOVE on "All MS SQL SERVER" (or pretty close) to remove SSRS...
Thank you for that, holding breath now but it seems "remove SQL server"...
July 5, 2010 at 1:16 pm
Dan.Humphries (6/25/2010)
June 25, 2010 at 1:48 pm
Thank you Chris, I didn't notice the redundancy.
June 24, 2010 at 8:26 am
Thank you guys for replying me, I have the same concern about the function, I don't know if/how to improve it because for each record in the query result, I...
June 23, 2010 at 8:31 am
thank you Lowell
Where can I find the report file (.rdl?)? maybe from the report file I can find some clue on how the report is generated and create my own...
June 2, 2010 at 8:05 pm
Here is an example for you to understand:
set@body1 = 'This email is intended for ' + @Email + '.'
set @body1 = @body1 + '<br />' + '<br />'...
June 2, 2010 at 2:00 pm
lmu92 (6/2/2010)
June 2, 2010 at 1:58 pm
One thing missing here: is it possible to find out the last modified user? who made the last change? It seems not included in the sys.objects table. I do see...
June 2, 2010 at 1:13 pm
Thank you.
to check on created/modified, the view sys.objects ahs what you need:
select name,create_date,modify_date from sys.objects WHERE type_desc in
('SQL_STORED_PROCEDURE',
'AGGREGATE_FUNCTION',
'SQL_INLINE_TABLE_VALUED_FUNCTION',
'SQL_TABLE_VALUED_FUNCTION',
'SQL_SCALAR_FUNCTION')
June 2, 2010 at 12:17 pm
lmu92 (5/20/2010)
What links/hints/information did you get using a simple Google search?It seems like there is a load of information out there...
Whoa.... it doesn't sound friendly or patient to me, there...
May 20, 2010 at 4:19 pm
It seems the bracket is causing the problem, I took away the [], now this issue went away.
Thanks for replying.
April 23, 2010 at 3:09 pm
Viewing 15 posts - 481 through 495 (of 748 total)