Viewing 8 posts - 16 through 23 (of 23 total)
I would use the RETURN statement in my stored procedure to return the full count to the calling app. If you're using the SqlDataAdapter, I would declare an integer variable...
April 27, 2006 at 8:10 am
What do you mean by “However this is just not working how I expect it to”? What is it that you expect?
You can GRANT...
April 6, 2006 at 7:58 am
I would:
1. Store the report id and name in a table
2. Put a grid control on the front-end
3. Populate the grid with values from the report table
4. Let the user...
March 29, 2006 at 6:36 am
I suggest you make a copy of your project and bring up the copy in Visual Studio 2005. It should recognize that you're working with a previous version and should...
March 8, 2006 at 6:31 am
An easy way is to create a DTS package that exports the file or table in csv format then call it inside your stored procedure like:
exec master..xp_cmdshell 'dtsrun /S "ServerName"...
March 3, 2006 at 6:41 am
It could be an automatic update or patch from Windows that caused it to reboot, if your system allows auto update.
November 29, 2005 at 7:13 am
My guess is they've been replaced by AdventureWorks. You can copy the MDF and just attach to 2005.
November 22, 2005 at 7:20 am
Two processes executing the same DLL means two instances of the same DLLs running on separate threads. Each instance is an isolated process that does not know each other....
January 11, 2005 at 10:30 am
Viewing 8 posts - 16 through 23 (of 23 total)