Viewing 15 posts - 5,086 through 5,100 (of 7,164 total)
Evil Kraig F (10/5/2011)
opc.three (10/5/2011)
Evil Kraig F (10/5/2011)
opc.three (10/5/2011)
PS I cannot wait to see the examples of when one would HAVE to use it.
SQL Express with an on-demand file bulk...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 5, 2011 at 4:38 pm
Cool, happy you got it sorted!
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 5, 2011 at 4:09 pm
Evil Kraig F (10/5/2011)
opc.three (10/5/2011)
PS I cannot wait to see the examples of when one would HAVE to use it.SQL Express with an on-demand file bulk load and archiving.
My guess...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 5, 2011 at 4:08 pm
I would consider myself a crusader against enabling and using xp_cmdshell. I have posted many times on these forums advising against the use of it. All too often it is...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 5, 2011 at 3:58 pm
george sibbald (10/4/2011)
declare @dbname sysnameset @dbname = db_name()
print @dbname
select backup_start_date,backup_finish_date,backup_size/1024 as 'size in MB'
from msdb..backupset
where database_name = @dbname and type = 'D'
I have just one tweak. backup_size is...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 5, 2011 at 11:25 am
SSIS may be the fastest performer but if you're not versed in it you can use bcp. It is quite fast when using Native format between two SQL Servers. You...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 5, 2011 at 11:08 am
awu (10/4/2011)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 5, 2011 at 10:44 am
peterjonk (10/3/2011)
The problem occurs in the validation phase of the data...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 4, 2011 at 7:14 am
Nice work. Thanks for sharing that.
This may save you a bit of time down the line. You can add hooks to the PowerShell runtime directly into your SSIS environment enabling...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
October 3, 2011 at 5:18 pm
If you look at the code for sys.sp_helpsubscription you'll notice it calls two procs, sys.sp_MSrepl_getpublisherinfo and sys.sp_MSrepl_helpsubscription. Chances are the proc sys.sp_MSrepl_getpublisherinfo does not make use of INSERT EXEC...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 30, 2011 at 10:48 am
I am not sure why you are not having the issue when you run as a login/user in the db_owner role. Regardless, if you are getting by with a db_owner...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 29, 2011 at 9:01 am
You are superb Gail, thank you for your help here 🙂
GilaMonster (9/27/2011)
Updates to a heap cause forwarding pointers, which is far more a problem than extent fragmentation and would probably...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2011 at 3:15 pm
GilaMonster (9/27/2011)
opc.three (9/27/2011)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2011 at 2:12 pm
GilaMonster (9/27/2011)
opc.three (9/27/2011)
GilaMonster (9/27/2011)
Both.From my experience with this client, and admittedly it is my first major dealing with heaps, I see that a high percentage affects performance adversely.
It probably...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2011 at 12:11 pm
GilaMonster (9/27/2011)
Both.
From my experience with this client, and admittedly it is my first major dealing with heaps, I see that a high percentage affects performance adversely. As to how high...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2011 at 11:36 am
Viewing 15 posts - 5,086 through 5,100 (of 7,164 total)