Viewing 15 posts - 46 through 60 (of 70 total)
If you need to return a value from dynamic sql, you should use
the sp_executeSQL system stored proc. You can look it up in BOL, but here's a sample script:
DECLARE...
June 17, 2004 at 11:50 pm
Straight from MS's site:
Distributed File System (DFS) is a strategic storage management solution in Windows Server 2003 that enables you to group shared folders located on different servers logically...
May 6, 2004 at 9:51 am
This is very simple, but it's worked like a charm for the last couple of years. If anyone has a better alternative, I'm all eyes (since I can't hear what...
May 6, 2004 at 9:44 am
If you're using the MSDE, you're probably running up against the "governor" that "dissuades" more than 5 users from using it, although you can theoretically go higher, it just gets...
May 5, 2004 at 10:08 pm
Just an FYI, you might have already considered this, but make sure to code your trigger for multiple inserts. I've been burnt by the reality of insert statements that fire...
May 5, 2004 at 9:48 pm
I have been using an Access2k front end to SQL 2k for about 2 years with 6 users. I've never had the locking problem and all 6 are in it...
May 5, 2004 at 9:42 pm
You might want to look into User-Defined Functions That Return a table Data Type.
They might give you the functionality you're looking for.
May 5, 2004 at 9:32 pm
From BOL searching on AND:
Hope is helps.
When a query is executed, it evaluates first the clauses linked with AND, and then those linked with OR.
Note...
January 15, 2004 at 12:53 am
I don't know if it's just pseudo code, but you should be using inserted as your table name. It's the actual table data that's being inserted, even during the update. ...
January 15, 2004 at 12:42 am
Have you tried accessing the data in the linked server using a view and then trying to access the view from the remote servers?
January 14, 2004 at 12:31 am
Whenever I use linked servers, I use a view to hide the extra complexity and confusion. It also saves typing the extra dots
January 14, 2004 at 12:21 am
I think the easiest way to rebuild the data would be to delete and add a clustered index. The final result would be data ordered by the clustered index.
January 14, 2004 at 12:19 am
Whenever I import data from Excel, especially using DTS, I open the doc and import it using COM. The "feature" you're dealing with is MS's way of optimizing ODBC...
November 26, 2003 at 11:55 am
You could save all of the packages to a structured file (text) and then search those files. Kind of a pain, I know.
November 24, 2003 at 10:48 pm
I've always used the > clause and a unique index to page through my data. You store the ID on the page and pass that ID to a stored...
November 24, 2003 at 12:41 pm
Viewing 15 posts - 46 through 60 (of 70 total)