Viewing 15 posts - 136 through 150 (of 3,738 total)
I have been searching for a solution.
It appears to be a bug that is not fixable.
Any ideas?
August 11, 2016 at 10:15 am
A developer created a spatial index and after it was created the error occurred on the DBCC Command.
August 11, 2016 at 10:00 am
I run the following command and it display the table and the extended index name:
SELECT
OBJECT_NAME(PARENT_OBJECT_ID) AS table_object,
name,
create_date
FROM...
August 11, 2016 at 9:14 am
How do I get the parent Object?
The following gives me the name of the Index:
select OBJECT_NAME(1239532045)
It returns:
extended_index_1682469418_384000
August 11, 2016 at 8:37 am
I was trying to determine what the command would be since I do not think I have the actual index name?
I saw that link that you provided.
Thanks.
August 11, 2016 at 8:12 am
They need to be able to create Jobs.
I tried assigning Fixed Database Rolls but that did not work.
July 29, 2016 at 5:03 am
I know this is an old post but I have to Grant an individual permission to manage SQL Server Jobs.
That is Create, Modify Drop, etc.
Do I need to create a...
July 28, 2016 at 1:06 pm
ok, that was simple.
Thank you.
July 1, 2016 at 6:34 am
RESTORE DATABASE PrismDataBillingTest
FROM DISK = 'G:\MSSQL11.MSSQLSERVER\MSSQL\Backup\PrismData\PrismData_backup_2016_06_26_130000_9108635.bak'
WITH REPLACE,
MOVE 'PrismData_Data' TO 'D:\MSSQL11.MSSQLSERVER\MSSQL\DATA\PrismDataBillingTest_Data.mdf',
MOVE' PrismData_FG2_0' TO 'D:\MSSQL11.MSSQLSERVER\MSSQL\DATA\PrismDataBilling_Indices_0.ndf',
MOVE 'PrismData_FG2_1' TO' D:\MSSQL11.MSSQLSERVER\MSSQL\DATA\PrismDataBillingTest_Indices_0.ndf',
MOVE 'PrismData_FG1_0' TO 'D:\MSSQL11.MSSQLSERVER\MSSQL\DATA\PrismDataBillingTest_FG1_0.ndf',
MOVE 'PrismData_FG1_1' TO 'D:\MSSQL11.MSSQLSERVER\MSSQL\DATA\PrismData_FG1_1.ndf',
MOVE 'PrismData_Log' TO 'F:\MSSQL11.MSSQLSERVER\MSSQL\DATA\PrismDataBillingTest_Log.ldf'
Msg 3234, Level 16, State 2,...
July 1, 2016 at 6:05 am
ThomasRushton (7/1/2016)
could you please provide me with the syntax?
You've got a big WITH
clause in your RESTORE
statement which contains lots of options to move files around. Just add...
July 1, 2016 at 5:59 am
ok, thanks I'm not feeling that well. I thought you might be aqble to help me out.
Have a nice day.
July 1, 2016 at 5:58 am
John Mitchell-245523 (7/1/2016)
July 1, 2016 at 4:55 am
GilaMonster (7/1/2016)
As John said, add the REPLACE option to your restore statement.See https://msdn.microsoft.com/en-us/library/ms186858.aspx for the options and syntax for a RESTORE
ok, I'm tired could you please help me with the...
July 1, 2016 at 4:46 am
John Mitchell-245523 (7/1/2016)
July 1, 2016 at 4:11 am
Thanks John could you kindly provide me with the syntax?
July 1, 2016 at 3:51 am
Viewing 15 posts - 136 through 150 (of 3,738 total)