Forum Replies Created

Viewing 8 posts - 16 through 23 (of 23 total)

  • RE: Limiting SQL return

    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...

  • RE: Table permissions for a user

    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...

  • RE: reporting via vb frontend

    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...

  • RE: how do i copy projects from visual studio 2003 to vs 2005

    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...

  • RE: Create/export csv file from sql server table

    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"...

  • RE: SQL Server Services Restarted

    It could be an automatic update or patch from Windows that caused it to reboot, if your system allows auto update.

  • RE: Northwind or pubs

    My guess is they've been replaced by AdventureWorks. You can copy the MDF and just attach to 2005.

  • RE: Hi about DLL''''s

     

    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....

Viewing 8 posts - 16 through 23 (of 23 total)