Viewing 12 posts - 1 through 12 (of 12 total)
Good that I at least found out that SSRS 2008 does not require IIS. I was thinking it still uses IIS as SQL 2005.
My installation of SSRS is in a...
June 2, 2010 at 9:16 am
I am using Latin1_General_CI_AS
select case when 'ž' = 'Ž' then 1 else 0 end ---- returns 1
NM
June 2, 2010 at 8:17 am
Looks like a problem with the IIS on the Report server. Play around with the settings on that...
Make sure, that in IIS, under Web Service Extensions, ASP.net is allowed.
NM
June 2, 2010 at 8:12 am
Hi Everyone,
Please note that you can run two instances of SQL server and make it listen on two different IP address.
You need to...
June 2, 2010 at 8:01 am
I hope this is what u are looking for
select UserId,
Sum(case when course = 'Web1' then Status else 0 end) web1,
Sum(case when course = 'Web2' then Status else 0 end)...
July 16, 2009 at 6:14 am
can't be of much help, without knowing what has to be done
NM
July 10, 2009 at 4:38 am
it would have been nice, if u just post a sample data, not the 10,000 lines.
OK, you may not be able to append to a new column using DTS....
July 8, 2009 at 7:41 am
post a sample xml file and the DDL / schema for the target table, will try to solve ur mystery.
Also note that u can have a script component as a...
July 8, 2009 at 7:24 am
try
SET DATEFORMAT YMD
DELETE FROM WHERE RecordDate = '2009-06-30';
This forces to date format to YY-MM-DD, ignoring the client Regional settings.
This will do a...
July 7, 2009 at 7:24 am
I believe this is what you are trying to achieve,
select
convert(float, datediff(mi, convert(datetime, (convert(varchar, arrival_date) + ' ' + convert(varchar, arrival_time))), convert(datetime, (convert(varchar, arrival_date) + ' ' + convert(varchar, initial_assesment_time))))), arrival_date,...
July 7, 2009 at 7:09 am
I believe that SQL Compact Edition is meant for single user; it is not a complete database. You cannot have stored procedures / triggers / enterprise options like replication,...
July 7, 2009 at 5:49 am
Viewing 12 posts - 1 through 12 (of 12 total)