Search Results

2
votes
5answers
622 views

What is the comparative speed of temporary tables to physical tables in SQL?

I have a script that needs to extract data temporarily to do extra operations on it, but then doesn't need to store it any further after the script has run. I currently have the data in question i …
0
votes
4answers
1k views

Select from different tables via SQL depending on flag

I have a script to extract certain data from a much bigger table, with one field in particular changing regularly, e.g. SELECT CASE @Flag WHEN 1 THEN t.field1 WHEN 2 THEN t.field2 W …
0
votes
4answers
241 views

Find an object in MSSQL (cross-database)

If I've been told a table (or proc) name, but not which connected database the object is located in, is there any simple script to search for it? Maybe search somewhere in the System Databases? ( …
3
votes
2answers
124 views

Edit synonyms in MS SQL Server 2005

Out of curiousity, is there any way to edit an existing synonym? That is, change which table the synonym is pointing to... Thus far I seem to have had to delete and re-create th …
3
votes
2answers
186 views

Extract an SQL Server 2005 database’s structure to XML

This is something I know can be done somehow, because I've done it before, but I can't for the life of me remember how. I want to export the structure of an SQL Server dat …
0
votes
3answers
136 views

Speed up a UPDATE with SELECT query

I have two tables: Table 1 has Episode and Code, with Episode as distinct. Table 2 has Episode and Code, but Episode is not distinct (other fields in the table, not relevant to the task, ma …
0
votes
6answers
70 views

Fast way to eyeball possible duplicate rows in a table?

Similar: http://stackoverflow.com/questions/91784 I have a feeling this is impossible and I'm going to have to do it the tedious way, …
0
votes

Select from different tables via SQL depending on flag

A simpler solution, and one suggested by a workmate: SELECT CASE @Flag WHEN 1 THEN t.field1 WHEN 2 THEN t.field2 WHEN 3 THEN t.field3 END as field, [A bunch of other fields], …
2
votes

Extract an SQL Server 2005 database’s structure to XML

Aha. It wasn't a built in feature after all - we use SQL Delta (http://www.sqldelta.com/), and its "Snapshot" feature was what was used. …
0
votes

Fast way to eyeball possible duplicate rows in a table?

A relatively simple solution that Ponies sparked: SELECT t.* FROM Table t INNER JOIN ( SELECT episode FROM Table GROUP BY Episode …