Viewing 15 posts - 5,086 through 5,100 (of 7,168 total)
Did you check for DENY on that table? What does this return?
DECLARE @schema_name SYSNAME,
@table_name SYSNAME ;
SELECT @schema_name = 'schema_name',
...
October 6, 2011 at 10:20 am
Evil Kraig F (10/5/2011)
Heh, you're stretching an already stretched point there Orlando.
In the scenario where SQL Express is leveraged to create an on-demand file loader and archiving application SQL Server...
October 5, 2011 at 10:31 pm
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...
October 5, 2011 at 4:38 pm
Cool, happy you got it sorted!
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...
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...
October 5, 2011 at 3:58 pm
george sibbald (10/4/2011)
declare @dbname sysname
set @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...
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...
October 5, 2011 at 11:08 am
awu (10/4/2011)
October 5, 2011 at 10:44 am
peterjonk (10/3/2011)
The problem occurs in the validation phase of the data...
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...
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...
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...
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...
September 27, 2011 at 3:15 pm
GilaMonster (9/27/2011)
opc.three (9/27/2011)
September 27, 2011 at 2:12 pm
Viewing 15 posts - 5,086 through 5,100 (of 7,168 total)