Click here to Skip to main content
15,892,298 members
Home / Discussions / Database
   

Database

 
AnswerRe: 'OSQL' is not a recognized internal or exteral...... Pin
Rob Graham25-Jul-06 1:00
Rob Graham25-Jul-06 1:00 
GeneralRe: 'OSQL' is not a recognized internal or exteral...... Pin
Skanless25-Jul-06 11:20
Skanless25-Jul-06 11:20 
GeneralRe: 'OSQL' is not a recognized internal or exteral...... Pin
Rob Graham26-Jul-06 2:42
Rob Graham26-Jul-06 2:42 
GeneralRe: 'OSQL' is not a recognized internal or exteral...... Pin
Skanless27-Jul-06 12:18
Skanless27-Jul-06 12:18 
QuestionNeed help with Reporting Services Pin
Slow Learner24-Jul-06 12:15
Slow Learner24-Jul-06 12:15 
AnswerRe: Need help with Reporting Services Pin
Frank Kerrigan25-Jul-06 1:53
Frank Kerrigan25-Jul-06 1:53 
QuestionNeed a way to clone rows in SQL [modified] Pin
PyroManiak24-Jul-06 10:07
PyroManiak24-Jul-06 10:07 
AnswerRe: Need a way to clone rows in SQL Pin
Michael Potter24-Jul-06 11:31
Michael Potter24-Jul-06 11:31 
Just run an insert ignoring the autonumber primary key. It will be filled in for you.

INSERT INTO MyTable
(
   Field1,
   Field2,
   Field3
)
SELECT
   Field1,
   Field2,
   Field3
FROM
   MyTable
WHERE
   Field2 = 'MyCriteria'

GeneralRe: Need a way to clone rows in SQL [modified] Pin
PyroManiak24-Jul-06 11:44
PyroManiak24-Jul-06 11:44 
GeneralRe: Need a way to clone rows in SQL Pin
Frank Kerrigan25-Jul-06 1:55
Frank Kerrigan25-Jul-06 1:55 
GeneralRe: Need a way to clone rows in SQL Pin
Michael Potter25-Jul-06 4:21
Michael Potter25-Jul-06 4:21 
GeneralRe: Need a way to clone rows in SQL Pin
PyroManiak25-Jul-06 7:52
PyroManiak25-Jul-06 7:52 
GeneralRe: Need a way to clone rows in SQL [modified] Pin
PyroManiak25-Jul-06 7:57
PyroManiak25-Jul-06 7:57 
QuestionRow based security Pin
martin_hughes24-Jul-06 9:49
martin_hughes24-Jul-06 9:49 
AnswerRe: Row based security Pin
Colin Angus Mackay24-Jul-06 11:52
Colin Angus Mackay24-Jul-06 11:52 
AnswerRe: Row based security Pin
Frank Kerrigan25-Jul-06 2:03
Frank Kerrigan25-Jul-06 2:03 
GeneralRe: Row based security Pin
martin_hughes25-Jul-06 8:04
martin_hughes25-Jul-06 8:04 
QuestionBastardized query into one query Pin
Nino_124-Jul-06 8:11
Nino_124-Jul-06 8:11 
AnswerHrmm Pin
Ennis Ray Lynch, Jr.24-Jul-06 9:26
Ennis Ray Lynch, Jr.24-Jul-06 9:26 
GeneralRe: Hrmm Pin
Nino_124-Jul-06 11:37
Nino_124-Jul-06 11:37 
AnswerRe: Bastardized query into one query Pin
Michael Potter24-Jul-06 11:43
Michael Potter24-Jul-06 11:43 
QuestionSqlException Error - Login Pin
TheJudeDude24-Jul-06 7:06
TheJudeDude24-Jul-06 7:06 
AnswerRe: SqlException Error - Login Pin
Frank Kerrigan25-Jul-06 2:07
Frank Kerrigan25-Jul-06 2:07 
GeneralRe: SqlException Error - Login Pin
TheJudeDude25-Jul-06 10:57
TheJudeDude25-Jul-06 10:57 
Questionsql data types Pin
saneng24-Jul-06 5:52
saneng24-Jul-06 5:52 

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.