Viewing 15 posts - 61 through 75 (of 347 total)
1. yes, the log size would decrease with frequency of backups
2. truncate only clears the space and does not unallocate the space
3. if you want to free up disk space,...
September 15, 2009 at 9:53 am
I had a situation where a 3rd party app was deployed and the database was stuck in recovery/readonly simultaneously and attempting to drop/detach/recover or otherwise change the state of the...
September 15, 2009 at 8:48 am
I'm not sure if it can cross domains or not, but double-take has been working well for us. It replicates at the filesystem level and we use it to replicate...
September 14, 2009 at 1:25 pm
select c.name as reportname, d.name as datasourcename from catalog c inner join datasource d on
c.itemid = d.itemid
you will have multiple rows per report if you use more than one datasource...
September 14, 2009 at 1:20 pm
this should at least get you started
select * from catalog c inner join datasource d on
c.itemid = d.itemid
September 14, 2009 at 12:27 pm
I've seen arguments both ways, but I always recommend trying both solutions yourself, checking query plans, and deciding which is better in your situation. I suspect both will produce the...
September 11, 2009 at 12:58 pm
select a.column1, b.column1 from table1 a,table2 b where a.column2 = b.column4
technically, it's a join, but doesn't use the join keyword. This style of join is going to be deprecated, so...
September 11, 2009 at 12:55 pm
It depends on the query and what you are sorting on. If you already have a particular query in mind, I would try it both ways and see what one...
September 11, 2009 at 8:31 am
I believe that would only affect order by clauses and sorting.
September 10, 2009 at 2:20 pm
if the values in the table are only Null, , then you could use coalesce to return the first non null value it finds.
August 26, 2009 at 2:41 pm
I use SSMS 2008 and run against a server group. I execute master.dbo.xp_readerrorlog against the server group and pipe the results into a table and then I filter out the...
August 25, 2009 at 1:58 pm
I would try it on a 2005 box. It appears that your version of litespeed is not compatible with SQL 2008.
August 18, 2009 at 11:58 am
create all the logins from your old server to your new one. Be sure to fix any orphans too.
August 18, 2009 at 11:57 am
yeah, I know it sounds strange, but I think I remember this one, but like I said, it's been a while since I have run 2000. If you are in...
August 17, 2009 at 2:12 pm
Are you in a position where you can reboot the machine? I have heard of instances where analysis services causes SPs to fail, and after a reboot sometimes they work....
August 17, 2009 at 1:56 pm
Viewing 15 posts - 61 through 75 (of 347 total)