Viewing 15 posts - 13,096 through 13,110 (of 13,849 total)
I don't quite understand what you want. Can you post the SP, some sample data and desired results?
April 6, 2006 at 7:52 am
Try commenting out line 102 and replace it with
response.write("EXEC InsertNextPage @StoryID='" & submission.Fields("StoryID") & "', @SubscriberID='" & submission.Fields("SubscriberID") & "', @Content='" & Cleanse(submission.Fields("Content")) & "'")
This should write a T-SQL...
April 6, 2006 at 7:49 am
Please post the declarations and instantiation of the conn object.
April 6, 2006 at 7:01 am
I guess the good thing about using views is that they are always up-to-date. You can just grab the data out of their database whenever you want (subject to load...
April 3, 2006 at 6:04 am
If the data that is coming out of the examination system contains rubbish as a result of bad design, that should not be your problem. You will end up building...
April 3, 2006 at 5:16 am
Great - I like stories with happy endings ![]()
April 2, 2006 at 3:17 am
Create a table that contains just numbers - 0, 1, 2, 3, ..., 1000 say.
Then do a CROSS JOIN to this table from your label data source, where newtable.num < number of...
April 1, 2006 at 5:14 am
Like this? I don't know SQLLite.
select datepart(dw, getdate())
April 1, 2006 at 5:07 am
You are correct in stating that the first piece of SQL identifies all the latest owners and their assets, but by performing a self join back to the orig table...
March 31, 2006 at 8:13 am
Not strange really. MS Access is a database, a development environment, an end-user environment ... it tries to do pretty much everything.
SQL Server is a pure database environment - it...
March 31, 2006 at 7:12 am
Something like this ... ?
select myTable.ID, myTable.AssetID, myTable.UserID, myTable.DateUpdated
from myTable join (select t2.assetID, max(t2.dateupdated) from myTable t2 group by t2.assetid) t3 on myTable.AssetID = t3.AssetID and myTable.DateUpdated = t3.DateUpdated
where...
March 31, 2006 at 5:19 am
OK - that's Analysis Services, not straight T-SQL. Analysis Services is one of Microsoft's business intelligence tools (design of OLAP cubes etc). It is complementary to SQL.
March 31, 2006 at 5:11 am
VBA functions do not work directly within chunks of T-SQL, as far as I know. Please post the quote from BOL that says they do.
March 31, 2006 at 4:15 am
Viewing 15 posts - 13,096 through 13,110 (of 13,849 total)