Search Results

1
vote
3answers
132 views

Identify full vs half yearly datasets in SQL

I have a table with two fields of interest for this particular exercise: a CHAR(3) ID and a DATETIME. The ID identifies the submitter of the data - several thousand rows. The DATETIME is not nece …
2
votes
5answers
619 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
238 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
119 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
184 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
133 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
66 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, …
1
vote

Identify full vs half yearly datasets in SQL

For interest, this is what I wound up using. It was based off Stephen's answer, but with a few adaptations. I don't yet have the reputation to upvote him. :). It's part of a larger scrip …
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], …
0
votes

Identify full vs half yearly datasets in SQL

I later realised that I was supposed to check to make sure that there was data for both July to December and January to June. So this is what I wound up in v2: SELECT @av …
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 …