Viewing 15 posts - 46 through 60 (of 581 total)
@TableJob table([StartDateTime] [smalldatetime] NOT NULL ,
July 15, 2006 at 9:38 am
July 15, 2006 at 4:28 am
What data type are the time columns?
July 14, 2006 at 2:51 pm
SELECT fi.FilePath, MAX(pmd.Path)...
July 14, 2006 at 12:13 pm
>If indexes are changed, then the app might have data integrity errors
Not having a usable index will just result in table locks rather than key range locks. It won't...
July 14, 2006 at 11:06 am
As you say, there's no great adavatage to using a function for much of this stuff as it won't be used in a SQL statement. In other cases, there...
July 14, 2006 at 10:31 am
One last shot in the dark - if you can amend the sp, try putting the select before the inserts...
July 14, 2006 at 10:10 am
That's a return value, which is placed directly into a variable in the execute statement if one is specified. It's not output to the client automatically.
Actually, ODBC will take...
July 14, 2006 at 9:30 am
Does the sp return any warnings or rowcounts when you run it in QA?
July 14, 2006 at 8:50 am
I'm not sure of the cause of the problem, but try this:
You might...
July 14, 2006 at 8:16 am
This will get the data for all nonempty permutations of two products.
You may then want to generate a dynamic crosstab from the data.
July 14, 2006 at 8:02 am
July 14, 2006 at 7:31 am
Clarification: UNION will eliminate duplicates in the output recordset, not just within the individual selects.
e.g.:
1
July 14, 2006 at 6:43 am
I think locking is the only way to do exactly what you describe for all SQL statements. But the temp table solution might be better. If you do need to go down this...
July 14, 2006 at 6:03 am
Viewing 15 posts - 46 through 60 (of 581 total)