Click here to Skip to main content
15,903,201 members
Home / Discussions / Database
   

Database

 
GeneralRe: problem with update a row? Pin
Blue_Boy24-May-05 4:01
Blue_Boy24-May-05 4:01 
Generalpicture inserting.please help me! Pin
rohollahabadan19-May-05 2:20
rohollahabadan19-May-05 2:20 
GeneralRe: picture inserting.please help me! Pin
NewSilence21-May-05 12:11
NewSilence21-May-05 12:11 
GeneralRe: picture inserting.please help me! Pin
rohollahabadan22-May-05 21:23
rohollahabadan22-May-05 21:23 
Generalplease help me .please please.... Pin
rohollahabadan19-May-05 2:12
rohollahabadan19-May-05 2:12 
GeneralRe: please help me .please please.... Pin
RChin19-May-05 3:48
RChin19-May-05 3:48 
GeneralThe stored procedure .... Pin
rohollahabadan20-May-05 23:19
rohollahabadan20-May-05 23:19 
GeneralRe: The stored procedure .... Pin
RChin22-May-05 23:13
RChin22-May-05 23:13 
Hello rohollahabadan (hope I got that right),

The sp that you have given here bears no relation to table spec you referred to earlier.
Infact if you try to create that sp within SQL server you will get table mismatch errors.
Maybe you've just posted the wrong sp?


A compatible stored proc would look something like:

<br />
CREATE PROCEDURE insertUnit<br />
@uName nvarchar<br />
as<br />
insert into tblStores values(@uName)


With which you would use something like the following to insert data rows :

<br />
exec insRow 'chin'<br />
GO

-----------------





I Dream of Absolute Zero

Generalto me rchin. Pin
rohollahabadan22-May-05 21:26
rohollahabadan22-May-05 21:26 
GeneralRe: to me rchin. Pin
RChin22-May-05 23:15
RChin22-May-05 23:15 
GeneralRestore Database from MDF file without LDF Pin
18-May-05 20:39
suss18-May-05 20:39 
GeneralRe: Restore Database from MDF file without LDF Pin
Mike Dimmick18-May-05 22:52
Mike Dimmick18-May-05 22:52 
GeneralRe: Restore Database from MDF file without LDF Pin
Member 143253818-May-05 23:06
Member 143253818-May-05 23:06 
GeneralOracle stored procedures Pin
Luis Alonso Ramos18-May-05 14:07
Luis Alonso Ramos18-May-05 14:07 
GeneralRe: Oracle stored procedures Pin
niansah19-May-05 23:12
niansah19-May-05 23:12 
GeneralRe: Oracle stored procedures Pin
Luis Alonso Ramos20-May-05 4:55
Luis Alonso Ramos20-May-05 4:55 
Generalme questions Pin
snouto18-May-05 10:21
snouto18-May-05 10:21 
Generalquery a dateTime row Pin
Sasuko18-May-05 5:42
Sasuko18-May-05 5:42 
GeneralRe: query a dateTime row Pin
Michael Potter18-May-05 8:28
Michael Potter18-May-05 8:28 
GeneralErrors from DTS package Pin
leezardd18-May-05 5:01
leezardd18-May-05 5:01 
GeneralStored procedure Pin
nitin_ion18-May-05 1:17
nitin_ion18-May-05 1:17 
GeneralRe: Stored procedure Pin
Colin Angus Mackay18-May-05 1:25
Colin Angus Mackay18-May-05 1:25 
GeneralRe: Stored procedure Pin
nitin_ion18-May-05 2:04
nitin_ion18-May-05 2:04 
GeneralRe: Stored procedure Pin
maka230318-May-05 2:13
maka230318-May-05 2:13 
Questionhow do i read date time from mysql? Pin
Sasuko17-May-05 13:12
Sasuko17-May-05 13:12 

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.