Tuesday, March 20, 2012
compressed and encrypted SQL Server backups
does anyone can tell me some program that creates compressed and encrypted
SQL Server backups other than SQL LiteSpeed?
thanks in advanced!
BethRed-Gate SQL Backup, http://www.red-gate.com/products/SQL_Backup/index.htm
"Beth Med" <bmedina06@.prodigy.net.mx> wrote in message
news:%23Jr$YlEJGHA.500@.TK2MSFTNGP15.phx.gbl...
> hi,
> does anyone can tell me some program that creates compressed and encrypted
> SQL Server backups other than SQL LiteSpeed?
>
> thanks in advanced!
> Beth
>
>
>|||I've listed a few on my links page: http://www.karaszi.com/SQLServer/links.asp
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
Blog: http://solidqualitylearning.com/blogs/tibor/
"Beth Med" <bmedina06@.prodigy.net.mx> wrote in message
news:%23Jr$YlEJGHA.500@.TK2MSFTNGP15.phx.gbl...
> hi,
> does anyone can tell me some program that creates compressed and encrypted SQL Server backups
> other than SQL LiteSpeed?
>
> thanks in advanced!
> Beth
>
>
>|||Just curious Beth, but do you have any complaints with SQL LiteSpeed? I ask
because I would also like to implement compressed backups soon.
-Phil
"Beth Med" <bmedina06@.prodigy.net.mx> wrote in message
news:%23Jr$YlEJGHA.500@.TK2MSFTNGP15.phx.gbl...
> hi,
> does anyone can tell me some program that creates compressed and encrypted
> SQL Server backups other than SQL LiteSpeed?
>
> thanks in advanced!
> Beth
>
>
>|||hello Phil...sorry about the delay...
no, i don´t have any but i need other SW in order to compare this one...
Beth
"Philip Mattson" <philm@.nwsoft.com> escribió en el mensaje
news:%23h%238o5eJGHA.1368@.TK2MSFTNGP10.phx.gbl...
> Just curious Beth, but do you have any complaints with SQL LiteSpeed? I
> ask because I would also like to implement compressed backups soon.
> -Phil
> "Beth Med" <bmedina06@.prodigy.net.mx> wrote in message
> news:%23Jr$YlEJGHA.500@.TK2MSFTNGP15.phx.gbl...
>> hi,
>> does anyone can tell me some program that creates compressed and
>> encrypted SQL Server backups other than SQL LiteSpeed?
>>
>> thanks in advanced!
>> Beth
>>
>>
>
Sunday, March 11, 2012
Component not showing "Show Advanced Editor" in menu
I've developed a couple of components now and I know I've seen this problem before but I can't remember how to solve it. My component is built, it has it's own (blank at the moment) UI and it seems to work fine except that there is no right click option to look at the advanced editor. The code is almost identical to another component I wrote that works just fine.
Any ideas anyone?
Thanks
Charlie.The component has more than one input. This apparenty silently disables Advanced Editor support.
Wednesday, March 7, 2012
complex 'query' using full text indexing
Hi people
i am having some difficulty with a quite advanced query (at least from my level).
select * from cities join areacodes on contains (city,'select area from areacodes right join cities on area not in (select city from cities)' )
Server: Msg 7631, Level 15, State 1, Line 1
Syntax error occurred near 'area'. Expected ''''' in search condition 'select area from areacodes right join cities on area not in (select city from cities)'.
what i am trying to do is find the areas in the postcodes table that contain words that are in the cities table. I need to match them up and modify the data in the postcodes table. the data is inconsistent as it comes from two unrelated sources. i have to be aware of spelling mistakes etc and have tried usind the soundex function to match them but it produces too many results. as you can see from the data in the postcodes table some areas (the second column) are not entirely upper case. these are the areas that have matched records in the cities table and the data is valid.
please can someone suggest the correct and easy way of doing this?
Thanks
Chris Morton
POSTCODES TABLE FIRST 30 ROWS
CITIES TABLE FIRST 30 ROWS
Hi Chris,
The only way I can think of that you can leverage CONTAINS/fulltext functionality in this case is unfortunately through a cursor - you'll need to fetch a row from the Cities table and run a CONTAINS query on your Postcodes table per every city you fetch.
If you have a requiement for matching large amounts of "fuzzy" data, you may want to check if Fuzzy Lookup Transform in SSIS could be useful.
Hope this helps.
Best regards,