Viewing 15 posts - 1,006 through 1,020 (of 1,993 total)
i know since sql 2000 there have been some changes to the way queries are evaluated... you get the same type of errors is you try and insert from a...
MVDBA
August 29, 2012 at 3:55 am
My Company is a huge user of Cloud services (we consume about 250Gb of new data a day) and although there are some drawbacks (IO performance is appauling etc) the...
MVDBA
August 13, 2012 at 2:36 am
Changing the recovery model to simple is not recommended for the fact it will break the chain of the log in case if you are having log shipping or database...
MVDBA
July 10, 2012 at 3:55 am
in that case (depending on how dilligent your test analyst is and what methods/tools they are using for the test) then i would just leave it alone - any...
MVDBA
July 6, 2012 at 2:56 am
in that case (depending on how dilligent your test analyst is and what methods/tools they are using for the test) then i would just leave it alone - any...
MVDBA
July 6, 2012 at 2:30 am
what kind of testing ?
performance testing (soak, stress, load tests)?
functional testing / Unit testing?
environment/patch deployment testing ?
MVDBA
July 5, 2012 at 9:30 am
joe.eager (7/5/2012)
Background: I was...
MVDBA
July 5, 2012 at 9:23 am
are you doing index rebuilds or index reorganisation? it sounds like a rebuild
if it is a rebuild then changing the t-log backup schedule would be pointless as the entire index...
MVDBA
July 5, 2012 at 9:18 am
i can see that in some cases using an IF statement might make huge blocks of duplicate code, but i can't see any performance issues
regardless you can do the following...
MVDBA
July 5, 2012 at 7:10 am
i think this is 99% correct
with x (name,id,gid)
as
(
select a.name,a.principal_id as id,b.role_principal_id as gid from sys.database_principals a inner join sys.database_role_members b on b.member_principal_id=a.principal_id
where a.principal_id=5
union all
select a.name,a.principal_id as id,b.role_principal_id as gid...
MVDBA
June 29, 2012 at 8:02 am
how about in access running a maketable query based on the linked table and then pushing that to your sql server ?
MVDBA
June 28, 2012 at 9:07 am
if it's a new development have you considered moving to SQL 2008/2012 and using filestream ?
i've used the file full text search before and it leaves you at the mercy...
MVDBA
June 28, 2012 at 9:04 am
or you could just turn the column of data into a CSV format
declare @str varchar(max)=''
select @str=@str+name+',' from syscolumns where....
MVDBA
June 28, 2012 at 9:00 am
the problem with pivots is that you seem to have to know what the columns are before you get the data
the only way you can do this is to use...
MVDBA
June 28, 2012 at 8:57 am
you should be able to see from task manager what the AV product is using
if you are concerned about the amount it's using it migt be worth looking at...
MVDBA
June 28, 2012 at 8:51 am
Viewing 15 posts - 1,006 through 1,020 (of 1,993 total)