Viewing 15 posts - 331 through 345 (of 1,109 total)
The first thing I noted was the way you were calling the stored procedure:
exec dbo.TableRowCopy 'appversie','id',2, @newid
the last parameter is an output parameter, so you should call it:
exec dbo.TableRowCopy 'appversie','id',2,...
March 14, 2008 at 9:10 am
M Chabot (3/13/2008)
March 14, 2008 at 8:56 am
Terry (3/14/2008)
If a have an index with field1 and field2, is it the same if a do a query:
select * from table where field1 = x and field2 = y
or...
March 14, 2008 at 8:52 am
This has been posted at http://www.sqlservercentral.com/Forums/Topic469394-149-1.aspx
Andras
March 14, 2008 at 8:50 am
jagpalsingh4 (3/14/2008)
Plz tell me that in sql 2000 we use osql .And i just use this query to see all servers with this query ''osql -L''
but i m thinking...
March 14, 2008 at 8:47 am
John's solution is nice, because it is using the INFORMATION_SCHEMA views (part of the SQL Standard :), and is portable). But if you prefer SQL Server 2005 (and 2008) system...
March 14, 2008 at 8:41 am
Sandy (3/14/2008)
hey Andras,
------------------------------------------------------
Unfortunately on 2005 you cannot pass table variables to stored procedures as parameters. You will be able to do this on SQL Server 2008, but that is not...
March 14, 2008 at 8:34 am
swatichari_itx (3/14/2008)
Alright! but how does the maintains the log details does it maintain the data in the table or on the physical file.
The details are maintained in the log file....
March 14, 2008 at 3:42 am
swatichari_itx (3/13/2008)
I always run the query usingbegin/commit transaction.
But if i want to view the details of this transaction then how should i do this.
Thanks in Advance.
dbcc traceon(3604)
dbcc log(1,1)
dbcc...
March 14, 2008 at 3:39 am
Sandy (3/14/2008)
I need to pass a table variable in a stored procedure.
Is it possible or not?
Actually, My web Page contains 100 records in Data Grid.
and I have to make...
March 14, 2008 at 3:33 am
Danny (3/12/2008)
Our network...
March 12, 2008 at 4:51 am
Steve Jones - Editor (3/11/2008)
March 11, 2008 at 10:38 am
Jeff Moden (3/11/2008)
Ya beat me to it, Andras... 😀
Finally I got lucky enough 🙂
Andras
March 11, 2008 at 10:37 am
winston Smith (3/11/2008)
March 11, 2008 at 9:22 am
winston Smith (3/11/2008)
This leaves a potential to lose...
March 11, 2008 at 9:07 am
Viewing 15 posts - 331 through 345 (of 1,109 total)