Click here to Skip to main content
15,879,535 members
Home / Discussions / Database
   

Database

 
QuestionExtending SSIS components Pin
Rahul_Biswas26-Oct-16 19:11
professionalRahul_Biswas26-Oct-16 19:11 
QuestionRecursive CTE in T-SQL Pin
Rahul_Biswas24-Oct-16 22:15
professionalRahul_Biswas24-Oct-16 22:15 
AnswerRe: Recursive CTE in T-SQL Pin
Richard MacCutchan25-Oct-16 0:18
mveRichard MacCutchan25-Oct-16 0:18 
GeneralRe: Recursive CTE in T-SQL Pin
Rahul_Biswas25-Oct-16 0:44
professionalRahul_Biswas25-Oct-16 0:44 
GeneralRe: Recursive CTE in T-SQL Pin
Richard MacCutchan25-Oct-16 0:51
mveRichard MacCutchan25-Oct-16 0:51 
GeneralRe: Recursive CTE in T-SQL Pin
Rahul_Biswas25-Oct-16 0:58
professionalRahul_Biswas25-Oct-16 0:58 
GeneralRe: Recursive CTE in T-SQL Pin
Richard MacCutchan25-Oct-16 1:08
mveRichard MacCutchan25-Oct-16 1:08 
QuestionWhy SQL server maintenance plan Cannot rebuild clustered index offline? Pin
cornpoppy24-Oct-16 0:11
cornpoppy24-Oct-16 0:11 
This is my table structure and I select "for index types that do not support online index rebuild rebuild indexes offline" option in rebuild maintenance plan(use SQL maintenance plan-SQL Server 2012) but still getting error
failed with the following error: "An online operation cannot be performed for index 'PK_Table1_1' because the index contains column 'FileContent'"; of data type text, ntext

Table structure :

CREATE TABLE [dbo].[Table1]
( [ColumnID] [INT] NOT NULL,
 [ColumnName] [NVARCHAR](250) NOT NULL,
 [FileContent] [VARBINARY](MAX) FILESTREAM NOT NULL,
 [ColumnDate] [VARCHAR](50) NOT NULL,
 [UserID] [VARCHAR](50) NOT NULL, 
[DefaultColumn] [BIT] NOT NULL, 
[ID] [UNIQUEIDENTIFIER] ROWGUIDCOL NOT NULL 
CONSTRAINT [DF__TblCheque__ID__398D8EEE] DEFAULT (NEWID()), [ReadOnly] [BIT] NOT NULL,
CONSTRAINT [PK_Table1_1] PRIMARY KEY CLUSTERED ( [ColumnID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,
IGNORE_DUP_KEY = OFF, 
ALLOW_ROW_LOCKS = ON, 
ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] FILESTREAM_ON [FileStreamG], 
CONSTRAINT [UQ__Table1__3214EC26C89CBB09] UNIQUE NONCLUSTERED ( [ID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, 
IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, 
ALLOW_PAGE_LOCKS = ON, 
FILLFACTOR = 70) ON [PRIMARY] ) ON [PRIMARY] FILESTREAM_ON [FileStreamG]


modified 26-Oct-16 1:47am.

AnswerRe: Why SQL server maintenance plan Cannot rebuild clustered index offline? Pin
Eddy Vluggen25-Oct-16 0:37
professionalEddy Vluggen25-Oct-16 0:37 
GeneralRe: Why SQL server maintenance plan Cannot rebuild clustered index offline? Pin
cornpoppy25-Oct-16 18:50
cornpoppy25-Oct-16 18:50 
GeneralRe: Why SQL server maintenance plan Cannot rebuild clustered index offline? Pin
Eddy Vluggen25-Oct-16 22:17
professionalEddy Vluggen25-Oct-16 22:17 
AnswerRe: Why SQL server maintenance plan Cannot rebuild clustered index offline? Pin
Richard Deeming26-Oct-16 3:23
mveRichard Deeming26-Oct-16 3:23 
QuestionConfiguration from a parent variable "ServerName" did not occur because there was no parent variable collection or Edit the existing Package Configurations using C# Pin
indian14321-Oct-16 12:12
indian14321-Oct-16 12:12 
QuestionVisual Studio Database Projects and General Use Pin
cjb11018-Oct-16 2:38
cjb11018-Oct-16 2:38 
AnswerRe: Visual Studio Database Projects and General Use Pin
Matt U.18-Oct-16 10:12
Matt U.18-Oct-16 10:12 
GeneralRe: Visual Studio Database Projects and General Use Pin
cjb11019-Oct-16 20:56
cjb11019-Oct-16 20:56 
GeneralRe: Visual Studio Database Projects and General Use Pin
Matt U.20-Oct-16 5:01
Matt U.20-Oct-16 5:01 
SuggestionIncrease the Execution time or Connection Time out property of SSIS package from C# code Pin
indian14312-Oct-16 13:40
indian14312-Oct-16 13:40 
QuestionTo run a SSIS package outside of SQL server data tools you must install populate filecollection of integration services or higher Pin
indian14310-Oct-16 6:39
indian14310-Oct-16 6:39 
AnswerRe: To run a SSIS package outside of SQL server data tools you must install populate filecollection of integration services or higher - resolved Pin
indian14312-Oct-16 12:58
indian14312-Oct-16 12:58 
QuestionExport Access db to Sql Server db everyday Pin
meeram396-Oct-16 15:09
professionalmeeram396-Oct-16 15:09 
AnswerRe: Export Access db to Sql Server db everyday Pin
Eddy Vluggen10-Oct-16 6:58
professionalEddy Vluggen10-Oct-16 6:58 
QuestionIdentity_Column Pin
Member 111616253-Oct-16 19:43
Member 111616253-Oct-16 19:43 
AnswerRe: Identity_Column Pin
Chris Quinn3-Oct-16 23:11
Chris Quinn3-Oct-16 23:11 
AnswerRe: Identity_Column Pin
Swinkaran4-Oct-16 1:17
professionalSwinkaran4-Oct-16 1:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.