Viewing 15 posts - 1,006 through 1,020 (of 1,995 total)
as you can see from my example - i didn't touch the proc - just the UDT
August 29, 2012 at 4:51 am
And my application is live on production.Is any way to edit UDT?
you should really do this on a dev server and send it for test before you even think...
August 29, 2012 at 4:02 am
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...
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...
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...
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...
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...
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 ?
July 5, 2012 at 9:30 am
joe.eager (7/5/2012)
Background: I was...
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...
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...
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...
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 ?
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...
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....
June 28, 2012 at 9:00 am
Viewing 15 posts - 1,006 through 1,020 (of 1,995 total)