1
vote
0
votes
How do you list all the primary keys of a table in SQL Server?
The system stored procedure sp_help will give you this information. Execute the following statement:
execute sp_help tablename
…
2
votes
Force default value when adding column to table - MSSQL
You need two statements. First create the column with not null. Then change the not null constraint to nullable
alter table mytable add mycolumn varchar(10) not null default ('a val …
2
votes
T-SQL: How do I get the rows from one table whose values completely match up with values in another table?
The following query gives you the requested results:
select A.pkid, B.otherId
from @a A, @b B
where A.value = B.value
group by A.pkid, B.otherId
having count(B.valu …
0
votes
Warm Backup
The only solution I know is to create a complete backup of your active database and restore this backup to a copy of the database in a 'warm backup' state. First create a backup from the active db: …
0
votes
How does including a SQL index hint affect query performance?
My experience is that sometimes you know more about your dataset then SQL Server does. In that case you should use query hints. In other words: You help the optimizer decide.
I once build a …
0
votes
In MS-SQL, how do I INSERT INTO a temp table, and have an IDENTITY field created, without first declaring the temp table?
You commented: not working if oldtable has an identity column.
I think that's your answer. The #newtable gets an identity column from the oldtable automatically. Run the next statements: …
