Viewing 15 posts - 2,296 through 2,310 (of 3,366 total)
I am not sure SSRS 2008 can consume html because it no longer uses IIS to render by default but you can use IIS.
February 13, 2009 at 9:44 am
I am not aware that you could over lay a text box on image however you could place a text box either to the right or left of an image....
February 13, 2009 at 9:31 am
You could use the Visual Studio Reportviewer control to run SSRS reports in Asp.net and Winform in remote mode and you can use it to create none SSRS reports in...
February 13, 2009 at 8:53 am
The first link is how to run SSIS package as a Job, while the second covers known issues the most important the package executes in the context of the Agent...
February 13, 2009 at 8:26 am
I agree because both SEQUENCE and IDENTITY are defined by ANSI SQL Oracle and Microsoft choose to implement one and not the other. Here is a better comparison it...
February 13, 2009 at 7:31 am
These are the reasons you need to use only DateTime Data type for Date so you don't get invalid data. The other option is to use Validators that will...
February 12, 2009 at 4:46 pm
Right click on the tables and script all out the create statements you will see there is a difference.
I just remembered if there is no difference in Data types then...
February 12, 2009 at 12:24 pm
That code I quoted is passing 24 bytes in Char to 4 bytes that is what SmallDateTime is defined. So convert all the Date columns to DateTime, then you...
February 12, 2009 at 12:03 pm
person.last_name, person.first_name, dates.visit, dates.EyeExam, dates.footexam, assign.assigned_pcp, CONVERT(smalldatetime, sm.date) AS smdate,
I on the other hand cannot understand why someone can take three Date columns which I am assuming is defined as...
February 12, 2009 at 11:48 am
The SET options are based of DateTime format and it is covered in the link I posted.
All aggregates ignore nulls except COUNT(*) so you must use it with aggregate functions....
February 12, 2009 at 9:40 am
The easy way to find out is if the char you are sending comes with seconds because SmallDateTime cannot store seconds so you may have to change SmallDateTime to DateTime....
February 12, 2009 at 9:05 am
No but in Europe minus Greek you can try this collation SQL_Latin1_General_Cp850_CI_AI_KI_WI and run some tests, And in Asia in China you need one for each version of Chinese and...
February 12, 2009 at 8:56 am
Then I need countries and languages to give you collation because some langauges have more than one defined, like English.
Here are the two relevant links with definition and related langauge...
February 12, 2009 at 8:20 am
It is more related to features in 8 compatibility mode you cannot use new 2005 features in that database though you are running it in 2005.
February 12, 2009 at 6:56 am
You should be able to change at the database level most langauges you want and you could do the same for the tables. It was not easy to change...
February 12, 2009 at 6:35 am
Viewing 15 posts - 2,296 through 2,310 (of 3,366 total)