Click here to Skip to main content
15,890,579 members
Home / Discussions / Database
   

Database

 
AnswerRe: Modifications Date Pin
-Dr_X-22-Mar-07 8:16
-Dr_X-22-Mar-07 8:16 
QuestionRe: Modifications Date Pin
gpeterer23-Mar-07 0:38
gpeterer23-Mar-07 0:38 
AnswerRe: Modifications Date Pin
-Dr_X-23-Mar-07 3:14
-Dr_X-23-Mar-07 3:14 
AnswerRe: Modifications Date Pin
gpeterer23-Mar-07 4:12
gpeterer23-Mar-07 4:12 
QuestionADD temporary column in stored procedure [modified] Pin
El'Cachubrey22-Mar-07 5:01
El'Cachubrey22-Mar-07 5:01 
Questionproblem in updating a table in SQL Server 2000 Pin
Rocky#22-Mar-07 3:00
Rocky#22-Mar-07 3:00 
QuestionRe: problem in updating a table in SQL Server 2000 Pin
andyharman22-Mar-07 7:36
professionalandyharman22-Mar-07 7:36 
AnswerRe: problem in updating a table in SQL Server 2000 Pin
Rocky#23-Mar-07 0:12
Rocky#23-Mar-07 0:12 
yes and infact I've got the solution as well. here it is:

CREATE PROC usp_CONFIGURE_ReplicationSizeForBlobs

@NewSize int = 100000000

/*
* Sets the 'max text repl size' instance wide configuration setting
* that governs the maximum size of an image, text, or ntext column
* in a replicated table.
*
* Example:
exec usp_CONFIGURE_ReplicationSizeForBlobs default
**********************************************************************/
AS

print 'Old size'
exec sp_configure 'max text repl size'

print ' Setting new size'
exec sp_configure 'max text repl size', @NewSize

print 'Reconfiguring'
RECONFIGURE WITH OVERRIDE

print 'New size'
exec sp_configure 'max text repl size'

QuestionRun script on Oracle Pin
NanaAM21-Mar-07 23:21
NanaAM21-Mar-07 23:21 
QuestionSql Query Pin
A.K.Kushwaha21-Mar-07 21:48
A.K.Kushwaha21-Mar-07 21:48 
AnswerRe: Sql Query Pin
Krish - KP21-Mar-07 21:59
Krish - KP21-Mar-07 21:59 
Questionsql import command Pin
bhawna_k21-Mar-07 20:58
bhawna_k21-Mar-07 20:58 
AnswerRe: sql import command Pin
N a v a n e e t h21-Mar-07 21:28
N a v a n e e t h21-Mar-07 21:28 
AnswerRe: sql import command Pin
N a v a n e e t h21-Mar-07 21:30
N a v a n e e t h21-Mar-07 21:30 
AnswerRe: sql import command Pin
Krish - KP21-Mar-07 21:41
Krish - KP21-Mar-07 21:41 
AnswerRe: sql import command Pin
coolestCoder21-Mar-07 22:15
coolestCoder21-Mar-07 22:15 
QuestionTemporary Tables - SQL Stored Procedures Pin
N a v a n e e t h21-Mar-07 20:10
N a v a n e e t h21-Mar-07 20:10 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
Harini N K21-Mar-07 20:37
Harini N K21-Mar-07 20:37 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
N a v a n e e t h21-Mar-07 21:26
N a v a n e e t h21-Mar-07 21:26 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
Krish - KP22-Mar-07 0:30
Krish - KP22-Mar-07 0:30 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
Krish - KP21-Mar-07 21:33
Krish - KP21-Mar-07 21:33 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
N a v a n e e t h22-Mar-07 0:29
N a v a n e e t h22-Mar-07 0:29 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
M.H.1.2.322-Mar-07 9:10
M.H.1.2.322-Mar-07 9:10 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
Colin Angus Mackay21-Mar-07 22:42
Colin Angus Mackay21-Mar-07 22:42 
QuestionRe: Temporary Tables - SQL Stored Procedures Pin
N a v a n e e t h22-Mar-07 0:23
N a v a n e e t h22-Mar-07 0:23 

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.