Viewing 15 posts - 2,506 through 2,520 (of 7,168 total)
The RESTORE command has to execute on the instance where the database will be restored. I would recommend using PowerShell for a job like this. You can use the SQL...
January 5, 2013 at 3:15 pm
If you set the BATCHSIZE to 1 on BULK INSERT you'll get the rows from the file into the database in the order they appear in the file. It'll be...
January 5, 2013 at 1:32 pm
January 5, 2013 at 1:01 pm
jl-820778 (1/4/2013)
Now, I'm getting convinced that db_owner is the right one to give but still have some dilemma. From time to...
January 4, 2013 at 2:03 pm
I was typing while you guys had two more responses, sorry if my last post seemed redundant.
From the resource-list it looks like you might have things accessing resources in a...
January 4, 2013 at 1:15 pm
Here is the prepared SQL from one of the processed shown in the graph (re-formatted by me). Does it look familiar?
(@P1 DECIMAL(15, 6),
...
January 4, 2013 at 12:50 pm
jl-820778 (1/4/2013)
Thanks for your quick reply.So, DBO would have absolute power to change anything within specific database even schema, trigger and etc?
Is there any limitation for dbo within database?
dbo is...
January 4, 2013 at 12:26 pm
What you want to do is add the Database User as a member of the db_owner Fixed Database Role:
USE YourDatabase;
EXEC sys.sp_addrolemember
@rolename = N'db_owner',
...
January 4, 2013 at 12:24 pm
Evil Kraig F (1/4/2013)
opc.three (1/4/2013)
January 4, 2013 at 12:00 pm
Get-TSCurrentSession | Get-Member
January 4, 2013 at 11:54 am
Look at the SQL Server Error Log to see how long each step in the creation of a new database took. Post the messages here if you have doubts.
January 4, 2013 at 11:23 am
Evil Kraig F (1/4/2013)
opc.three (1/4/2013)
Evil Kraig F (1/3/2013)
January 4, 2013 at 11:08 am
See the section "How to Check if Instant File Initialization is Enabled" here: http://www.johnsansom.com/sqlserver-instant-file-initialization/%5B/url%5D
January 4, 2013 at 9:05 am
Perry Whittle (1/4/2013)
Instant file initialisation will be noticeable...
January 4, 2013 at 8:58 am
Upgrade to SQL Server 2012? catalog.start_execution (SSISDB Database) Let me guess, not a likely option.
You are right to deny access to xp_cmdshell, ideally disabled. SQLCLR is a recommended replacements for...
January 4, 2013 at 8:49 am
Viewing 15 posts - 2,506 through 2,520 (of 7,168 total)