Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
6answers
179 views

Recommended Overview Book specifically on SQL Server 2005

I need a good overview book on SQL server 2005. I'm trying to move from SQL server 2000/DTS to SQL server 2005/SSIS. I've searched around on safari and most books seem to be about a specific part of ...
1
vote
3answers
73 views

Converting project to SQL Server, design thoughts?

Currently, I'm sitting on an ugly business application written in Access that takes a spreadsheet on a bi-daily basis and imports it into a MDB. I am currently converting a major project that ...
1
vote
1answer
627 views

SQL Server 2008: How crash-safe is a CLR Stored Procedure that loads unmanaged libraries

We've got a regular (i.e. not extended) stored procedure in SQL Server 2000 that calls an external exe. That exe, in turn, loads a .dll that came from an SDK and calls some procedures from it (i.e. ...
0
votes
0answers
78 views

CLR Triggers state

I consider using CLR trigger instead of traditional T-SQL one because I need to use some logic that is already implemented in C#. I'm aware that SQL server supports CLR integration and in my case it ...
0
votes
1answer
134 views

SQL Server CLR Integration enlisting in current transaction

I'm trying to use CLR integration in SQL Server to handle accessing external files instead of storing them internally as BLOBs. I'm trying to figure out the pattern I need to follow to make my code ...
0
votes
0answers
208 views

How to make sql server project connection string dynamic ie to set through code?

I am adding an sql server project in my solution and want the connection string to set automatically without my creating it upon different systems.? I read that I could change it by adding the ...