Want to create a quiz for your website but don't have the skills? This free software lets you quickly create and customise your very own multiple choice quiz. Just download the software and use the step-by-step wizard.
read more |
Friday, May 30, 2008
Friday, May 23, 2008
Grade your website
Website Grader is a free tool that measures the marketing effectiveness of a web site. The tool provides a score that incorporates elements such as web site traffic, SEO, social popularity, and other technical factors. This is a great tool when it comes to gaining an idea about what's working well and what could be improved on your site.
Wednesday, May 21, 2008
Scheduling a SSAS backup on SQL Server 2005
Today I had a requirement to schedule a backup on SQL Server Analysis Services. Here is the link that I found very useful for me. SSIS package to backup SSAS databases
Tuesday, May 20, 2008
Copying records from database into another -- SQL
I had this requirement today where I had to copy from a table in one database into a similar table in another database.
the code I have used in
[code]
insert into database1.dbo.table1 select * from database2.dbo.table1 where xxxxx
[/code]
where xxxx is the criteria that you need to add.
Precautions you have to tak before you do this.
Backup the database into which you are copying the record so that you can restore if something goes wrong.
Copy contents when there are no other transactions being entered into the database1
the code I have used in
[code]
insert into database1.dbo.table1 select * from database2.dbo.table1 where xxxxx
[/code]
where xxxx is the criteria that you need to add.
Precautions you have to tak before you do this.
Backup the database into which you are copying the record so that you can restore if something goes wrong.
Copy contents when there are no other transactions being entered into the database1
Sunday, May 11, 2008
Amazing Free Website Template, Table less Website
Free table less or div template of Website Brewers... Cool website layouts with psd files, ie6 and firefox compatible. Ready to used to CMS template such as Wordpress or Joomla. Other templates includes Flash Slideshow and FLA File. You can also used on static pages... CSS Style Sheet have description and comments. The images are optimize by 80%.
read more |
read more |
Thursday, May 08, 2008
Saturday, May 03, 2008
20+ Ways to Make Money Creating Online Cartoons
Various methods of using animation to make money, a few I am sure you expect and perhaps a couple you haven’t yet considered.
read more |
read more |
Subscribe to:
Posts (Atom)
Free Power BI Classes for Week 7 (Last)
Just completed the last class of the F ree P ower BI classes of this series. Today we have covered Adding a canvas background Adding Imag...
-
From the past 3 days I have been working on resolving merged and hidden cells issues when an SSRS reports is exported to excel. ...
-
When I tried to access the report manager after a fresh installation of Sql Server Reporting Serivces 2016 using the url http://localhost/R...
-
I was trying to build an SSIS package that one of my colleagues has created. The first error that was thrown was as below: Exception des...