Viewing 15 posts - 361 through 375 (of 1,109 total)
nicolas.pages (3/10/2008)
I am wondering if it is possible to create a temp table with a parameter that would contain the number of columns of the temp table. All the columns...
March 10, 2008 at 4:28 am
abansil (3/10/2008)
March 10, 2008 at 4:25 am
abansil (3/10/2008)
March 10, 2008 at 4:24 am
The "s" table alias is restricted to your insert statement, and does not go into the begin statement or higher. E.g. you could have a second insert/select statement in the...
March 10, 2008 at 4:21 am
rrhode (3/10/2008)
CREATE VIEW GI.vGI_CL_200712_EBVG_RJ_Test
AS
DELETE *
FROM ( SELECT * FROM GI.vGI_CL_200712_EBVG_RJ_Test
WHERE ACRMVTTYP_CDE...
March 10, 2008 at 3:59 am
Whoknow (3/10/2008)
I have 2 tables as below
Company: id, CompanyName
Employee: id, CompanyID, EmployeeName
as you guys can see that Employee.CompanyID is a foreign key link to Company...
March 10, 2008 at 3:47 am
Mohan Kumar (3/8/2008)
I understand you have performed backup of database not imported data. If it is then following command will help you to restore .csv file:
restore database Test from...
March 10, 2008 at 3:36 am
faheemlatif (3/10/2008)
Hi ,in my table i have values 'FAHEEM' and 'faheem',Now i have to select 'faheem' but SQL treat both as same ,
PLz suggest.
You could also use the COLLATE keyword...
March 10, 2008 at 3:27 am
guptaopus (3/10/2008)
I would like to use a stored procedure that calls other stored procedures and use a
temporary table to pass the results back and forth.(from Parent to child)
anybody help me...
March 10, 2008 at 3:18 am
rrhode (3/10/2008)
I am running the stored proc below that creates a view.
Is the code I`m using valid??
CODE:
set @w_sql = 'CREATE VIEW ' +...
March 10, 2008 at 3:08 am
shogg (3/7/2008)
So in 2000 I should create a temp table and insert to that temp table? Since I am in a function it wont let...
March 7, 2008 at 7:25 am
metoseeu (3/6/2008)
My objective is to display all the record information of a particular column in single cell.
tablename
Iden Code
2BB
4BB
4CH
Result should be something like ----BB,BB,CH.
I used the...
March 7, 2008 at 7:15 am
Ratheesh.K.Nair (3/7/2008)
Hi All,Is there any performance issue in using EXISTS and TOP in queries.
Thanks in Advance
I'm sure we could...
March 7, 2008 at 7:09 am
Sarvesh Kumar Gupta (3/7/2008)
Hi,I have take a backup of database in .csv format. now i want restore these files into sql server 2005.
How it is possible? tell me.:)
Regards
Sarvesh Kumar Gupta
You...
March 7, 2008 at 7:07 am
Sorry, on SQL Server 2000 you cannot use table variables for inserting into, so here is a version with temporary tables:
DECLARE @RET_VAL DECIMAL(13, 2) ;
DECLARE @Formula AS VARCHAR(255) ;
-- function...
March 7, 2008 at 7:03 am
Viewing 15 posts - 361 through 375 (of 1,109 total)