Search Results

2
votes

Stored procedures/DB schema in source control

One thing to keep in mind with your drop/create scripts in SQL Server is that object-level permissions will be lost. We changed our standard to use ALTER scripts instead, which maintains those per …
0
votes

Returning the largest of 2 columns in SQL Server

Case statements will probably be the fastest, but get increadibly unwieldly (as in the example in ΤΖΩΤΖΙΟΥ's link. And bad luck with a function, as it needs to be called for every single row (lots …
0
votes

Executing a stored procedure within a stored procedure

Looks like this question is a duplicate. Please only ask your question o …
0
votes

Is there a Max function in SQL Server that takes two values like Math.Max in .NET?

sambo99, could you please update your post to link to …
0
votes

SQL Server query execution plan shows wrong “actual row count” on an used index and performance is terrible slow

Have you run sp_spaceused to check if SQL Server's got the right summary for that table? I believe in SQL 2000 the engine used to use that sort of metadata when building execution …
1
vote

How long should SET READ_COMMITTED_SNAPSHOT ON take?

You can check the status of the READ_COMMITTED_SNAPSHOT setting using the sys.databases view. Check the value of the is_read_committed_snapshot_on …
1
vote

Problem with SET FMTONLY ON

Some statements will still be executed, even with SET FMTONLY ON. You "Conversion failed" error could be from something as simple as a set variable state …
3
votes

SQL Server 2005: Wrapping Tables by Views - Pros and Cons

You won't notice any performance impact for one-table views; SQL Server will use the underlying table when building the execution plans for any code using those views. I recommend you schema-bind …
1
vote

Setting up a backup DB server in ASP.NET web.config file

What you want is called "failover", where if one database fails your queries are automatically redirected to the other. This is acheived at the database level, not the application. There are a lo …
1
vote

SQL Server Full Text Search

This has already been asked and answered for SQL 2005 Express. …
0
votes

SQL 2005 sql login ip restriction

Why do you need to restrict by IP address? If all your users are authenticated, just set up group permissions on SQL Server, and allow or deny the groups you want. If the problem is variou …
1
vote

Storing UTF-16/Unicode data in SQL Server

The string functions work fine with unicode character strings; the ones that care about the number of characters treat a two-byte character as a single character, not two characters. The only ones …
1
vote

SQL Server: varbinary or int to store a bit mask?

I usually agree with @hainstech's answer of using bit fields, because you can explicitly name each bit field to indicate what it should store. However I haven't seen a practical approach to doing …
0
votes

Passing default parameter value vs not passing parameter at all?

As stated, TSQL doesn't distinguish between supplying the default value and not supplying a value. I think the engine basically substitutes the default values for any missing parameters (or params …
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 …

1 2 next
15 30 50 per page