Viewing 15 posts - 1 through 15 (of 21 total)
Dear Sir , your wrote: " I'd either use bcp to output to a temporary file and then concatenate the two together".
Please tell me that how would this be implemented.
...
February 22, 2011 at 11:23 pm
Dear Joy Sir,
Thanks a lot for your reply, i also wanted to know that how do temporary tables hold the result set of a stored procedure. i have read about...
February 13, 2011 at 9:47 pm
Dear Sir,
Thanks a lot for your reply, i also wanted to know that how do temporary tables hold the result set of a stored procedure. i have read about temporary...
February 13, 2011 at 9:46 pm
Dear Jeff Sir,
Thanks a lot for your reply, i also wanted to know that how do temporary tables hold the result set of a stored procedure. i have read about...
February 13, 2011 at 9:46 pm
Dear sir, then what are the main purposes for which temporary tables are used? Please tell, would be a great help. I want to know the practical and commercial...
February 10, 2011 at 8:07 am
thanks a lot sir, this solution is very very intellectual . thanks a lot. your are awesome
February 10, 2011 at 7:56 am
I CREATED A DATABASE--------
create database temporarytables
use temporarytables
--I CREATED TEMPORARY TABLE INSIDE A STORED PROCEDURE
create proc sp_testtemptable
as
begin
create table #temptable(tempno int)
end
THIS TIME I RUN THE SELECT * FROM #TEMPTABLE, OUTSIDE THE...
February 10, 2011 at 7:50 am
thanks a lot sir. your reply helped me a lot.
but for the delete case, what would you refer?
i want that when the user deletes the data from the table, then...
February 10, 2011 at 7:40 am
Dear Lowell Sir,
Actually, i have a .net application through which lacs of data would be inserted by the users.
but as usual, users keep on making mistakes. so i want that...
February 10, 2011 at 7:27 am
YES, I GRANTED THE SELECT PERMISSION, BUT IT GIVES ERROR :
Cannot grant, deny, or revoke permissions to sa, dbo, entity owner, information_schema, sys, or yourself.
February 9, 2011 at 1:57 am
dear sir,
--FIRSTLY,i CREATE A LOGIN TO ENTER INTO SQL SERVER WITH SQL AUTHENTICATION
create login employeelogin with password='employee_login'
--CREATE A USER FOR THE ABOVE CREATED LOGIN
create user employeeloginuser for login employeelogin
--the...
February 9, 2011 at 1:36 am
dear greg sir,
--FIRSTLY,i CREATE A LOGIN TO ENTER INTO SQL SERVER WITH SQL AUTHENTICATION
create login employeelogin with password='employee_login'
--CREATE A USER FOR THE ABOVE CREATED LOGIN
create user employeeloginuser for login...
February 9, 2011 at 1:28 am
i entered sql server using admin credentials by default windows authentication.
now i create a login 'bob'.
what happens when i create a login in sql?
it becomes automatically the dbo i think?
means...
February 9, 2011 at 1:10 am
sorry, there's no drop, by mistake i typed it
February 9, 2011 at 1:06 am
Viewing 15 posts - 1 through 15 (of 21 total)