Click here to Skip to main content
15,899,754 members
Home / Discussions / Database
   

Database

 
GeneralRe: copying the whole table from one server to another server Pin
Robin_Roy21-Jul-09 17:56
Robin_Roy21-Jul-09 17:56 
GeneralRe: copying the whole table from one server to another server Pin
venu65621-Jul-09 18:26
venu65621-Jul-09 18:26 
GeneralRe: copying the whole table from one server to another server Pin
Mycroft Holmes21-Jul-09 19:39
professionalMycroft Holmes21-Jul-09 19:39 
AnswerRe: copuing the whole table from one server to another server Pin
icanmakeiteasy21-Jul-09 19:32
icanmakeiteasy21-Jul-09 19:32 
GeneralRe: copuing the whole table from one server to another server Pin
venu65621-Jul-09 19:37
venu65621-Jul-09 19:37 
GeneralRe: copuing the whole table from one server to another server Pin
icanmakeiteasy21-Jul-09 19:50
icanmakeiteasy21-Jul-09 19:50 
Questioncommand to find specific value in select Pin
dabuskol21-Jul-09 1:58
dabuskol21-Jul-09 1:58 
AnswerRe: command to find specific value in select Pin
Ashfield21-Jul-09 2:08
Ashfield21-Jul-09 2:08 
Use substring to get the characters, and charindex to find the :

declare @a varchar(20)
set @a = 'Telec:144'
select substring(@a,1,charindex(':',@a)-1),substring(@a,charindex(':',@a)+1,len(@a))


will return Telec for the first 1 and 144 for the 2nd

Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP

GeneralRe: command to find specific value in select Pin
dabuskol21-Jul-09 2:20
dabuskol21-Jul-09 2:20 
GeneralRe: command to find specific value in select Pin
Ashfield21-Jul-09 4:48
Ashfield21-Jul-09 4:48 
QuestionLink Directory Submitter (3016) Pin
maliksp20-Jul-09 23:47
maliksp20-Jul-09 23:47 
RantRe: Link Directory Submitter (3016) Pin
Ashfield21-Jul-09 2:11
Ashfield21-Jul-09 2:11 
QuestionStored Procedure logic Pin
LucBite20-Jul-09 23:40
LucBite20-Jul-09 23:40 
AnswerRe: Stored Procedure logic Pin
J4amieC21-Jul-09 0:10
J4amieC21-Jul-09 0:10 
QuestionAvoining duplicates while joining tables Pin
nainakarri20-Jul-09 23:19
nainakarri20-Jul-09 23:19 
AnswerRe: Avoining duplicates while joining tables Pin
Blue_Boy20-Jul-09 23:31
Blue_Boy20-Jul-09 23:31 
GeneralRe: Avoining duplicates while joining tables Pin
nainakarri21-Jul-09 2:02
nainakarri21-Jul-09 2:02 
AnswerRe: Avoining duplicates while joining tables Pin
Ashfield21-Jul-09 2:14
Ashfield21-Jul-09 2:14 
GeneralRe: Avoining duplicates while joining tables Pin
nainakarri21-Jul-09 2:35
nainakarri21-Jul-09 2:35 
GeneralRe: Avoining duplicates while joining tables Pin
Ashfield21-Jul-09 4:43
Ashfield21-Jul-09 4:43 
QuestionApproach for CRUD transactions of a dynamic form Pin
Member 288307020-Jul-09 23:04
Member 288307020-Jul-09 23:04 
QuestionInsert Query Pin
sachees12320-Jul-09 22:07
sachees12320-Jul-09 22:07 
AnswerRe: Insert Query Pin
DoctorMick21-Jul-09 0:23
DoctorMick21-Jul-09 0:23 
AnswerRe: Insert Query Pin
Ashfield21-Jul-09 2:01
Ashfield21-Jul-09 2:01 
AnswerRe: Insert Query Pin
PIEBALDconsult21-Jul-09 5:18
mvePIEBALDconsult21-Jul-09 5:18 

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.