Viewing 15 posts - 301 through 315 (of 530 total)
June 23, 2005 at 2:44 am
Does this SP actually exist on the remote server or on the local server?
June 23, 2005 at 2:41 am
I almost guessed so... I think at this point it should be up to your third party vendor to show that their WebForm software actually IS slowed down. What ever...
June 23, 2005 at 2:38 am
Well, then I think the followup question would be: Where do you fit in your original question about CustomerID?
What do you want to pass to your SP to get your resulting...
June 22, 2005 at 8:16 am
..and even if you table has a clustered index on the column you want ordered. Don't depend on it. Doing a join might re-sort the table in some other, more...
June 22, 2005 at 7:32 am
No. SQL Triggers does not have a FOR EACH ROW. Depending on what dbo.s_SendErrorNotification is doing, maybe you could solve it without a cursor though...
June 22, 2005 at 6:48 am
Have you tried to make a SP on the Linked Server and execute it OVER the linked server?
EXEC LinkedServer.Database.Owner.mySPThatReturnsTheResultOfMyDBCC
//Hanslindgren
June 22, 2005 at 6:42 am
Hello,
You mean that you have x tables with CustomerID and you want the resultset to contain all the rows from all the tables (only those tables) that contain a specific...
June 22, 2005 at 6:39 am
How do you mean support double byte?
Maybe enough to look into NCHAR and NVARCHAR? Or maybe just a different COLLATION is enough?
June 22, 2005 at 6:10 am
I agree, doing a backup/restore to get one week of data seems a little awkward since you are getting everything and not just a week... Go with the BCP suggestion! Look...
June 22, 2005 at 5:54 am
I don't know how relavant this is, it still requires some extra work... But here goes nothing:
June 22, 2005 at 5:47 am
Hmm..
Simon Martin, a quick question: When you convert a table 'into' a partitioned view and you have to stick with the...
June 22, 2005 at 5:40 am
Format files are a real pain... You could go with the insertion into a temporary table, SELECT your two columns and then drop the temporary table.
June 21, 2005 at 11:04 am
Well. You could try this: http://www.microsoft.com/downloads/details.aspx?FamilyId=06616212-0356-46A0-8DA2-EEBC53A68034&displaylang=en
June 21, 2005 at 10:49 am
I guess you should be able to deduce from the query plan where the work is beeing done, if it is on SQL Server of Oracle side. (Look for the...
June 21, 2005 at 7:43 am
Viewing 15 posts - 301 through 315 (of 530 total)