1
vote
SQL Server Temp Tables and Connection Pooling
To share a temp table between users use two hashes before the name ##like_this.
In this case, though make sure you take steps to avoid clashes with multiple instances of the program.
…
4
votes
What is the difference between varchar and nvarchar
An nvarchar column can store any Unicode data. A varchar column is restricted to an 8-bit codepage. Some people think that varchar should be used because it takes up less space. I believe this is n …
1
vote
How do you copy a record in a SQL table but swap out the unique id of the new row?
insert into MyTable (uniqueId, column1, column2, referencedUniqueId)
select NewGuid(), // don't know this syntax, sorry
column1,
column2,
uniqueId,
from MyTable where uniqueId = @Id
…
5
votes
T-SQL - Is there a way to disable a trigger in the scope of a transaction?
If your trigger is causing performance problems in your application, then the best approach is to remove all manual updates to the table, and require all updates to go through the insert/update sto …
2
votes
Database Null
You may be able to define your parameters as nullable decimals. The C# syntax for a nullable value type like this:
decimal? rebateAmountOrWhatever;
You can then st …
1
vote
How do I profile a SQL CLR application?
Memory leaks are atypical for CLR applications, so that should be of little concern. But if I were to profile a SQL CLR function, I think I would create a stand-alone test application that calls th …
5
votes
How do you effectively model inheritance in a database?
Proper database design is nothing like proper object design.
If you are planning to use the database for anything other than simply serializing your objects (such as reports, querying, mult …
