Viewing 15 posts - 466 through 480 (of 660 total)
is there any other way where I can find the column name with the given data.
December 6, 2007 at 7:21 am
its a hard coding...
jobname,jobrole will be same for all the rows in emp
November 9, 2007 at 8:42 am
EXECUTE('select * from [' + @dbname + '].dbo.sysfiles')
for the same query how can i add where caluse like..
EXECUTE('select * from [' + @dbname + '].dbo.sysfiles') where date='09/04/1998'
November 9, 2007 at 8:40 am
I dont have any link to the table to update, can i update by querying where field='' something like tht?
November 9, 2007 at 5:53 am
I have a store proc where in it has more than 1000 lins of sql statements, how can i use dynamic sql there.
what i am trying to do is this...
November 8, 2007 at 6:42 am
I am trying to do something like this, but getting syntax error
CREATE PROCEDURE [dbo].test
@DBName varchar(30)
AS
SET NOCOUNT ON
Select * FROM @DBName.dbo.emp
WHERE jobid=''
GO
November 7, 2007 at 1:49 pm
I can use FOR XML AUTO for select statements but how can i use for store proc
Mike Levan (11/5/2007)
any more help pls..
November 5, 2007 at 9:16 am
I dont have that proc in msdb Db, coz its sql 2000. If you can copy the proc here i ca just create it in my 2000 and try working...
November 1, 2007 at 8:45 am
how can i export my store proc result set into a text file first?
October 31, 2007 at 7:02 am
Viewing 15 posts - 466 through 480 (of 660 total)