Search Results

2
votes

Converting PascalCase string to “Friendly Name” in TSQL

/* Try this. It's a first hack - still has problem of adding extra space at start if first char is in upper case. */ create function udf_FriendlyName(@PascalName varchar(max)) returns va …
0
votes

Finding out which locks that are acquired in a query on SQL Server?

Here's a query that will show you all active locks, who's got them, and what object they are on. I pulled this from a technet article or something years and years ago. It works on SQL 2000 and 20 …
0
votes

What’s a good online resource for SQL server and T-SQL?

I've always like SQL Server Central. They have lots of good articles, and every day there's a Question of the Day that you can try to answe …
2
votes

Need only Date from DateTime

This has been asked and answered before on Stack Overflow. In fact, it's been …
1
vote

Push Replication

When the initial snapshot is sent to the subscriber, it will create any missing objects. You will need to indicate what the snapshot should do if the object already exists by setting the "Action i …