Viewing 15 posts - 9,211 through 9,225 (of 10,144 total)
stricknyn (12/9/2008)
December 9, 2008 at 9:59 am
Ian (12/9/2008)
Sorry I did not see that page you linked, but very helpful. I will get that information out soon.thank you Chris
You're welcome Ian, and thanks for taking the trouble...
December 9, 2008 at 9:54 am
How long does it take to run once?
How many times is it running in the procedure which brought it to your attention as being a potential bottleneck?
December 9, 2008 at 9:49 am
Ian, could you please set up some sample data for each of the three tables as indicated in the link below? You will also need to provide a table of...
December 9, 2008 at 9:44 am
Joe, the syntax of your sp and the statement calling it look exactly correct to me. Provided that the output params are DECLAREd before the sp is called, they should...
December 9, 2008 at 9:30 am
Have you really got two tables in this update, dbo.PROVIDER_PARTICIPATIONS and Mytable?
December 9, 2008 at 9:24 am
This should do it, Arun:
UPDATE c SET IsReturned = 1
FROM OPENROWSET('SQLOLEDB', 'DRIVER={SQL Server};SERVER=CSDGWEB;UID=EPP_Developer;PWD=devel0per',
EPP_Prod.EPP_Developer.ClarificationPayments) c
INNER JOIN thangela.MissingClariDb a
ON a.Paymentlot...
December 9, 2008 at 9:00 am
Change the DELETE FROM to TRUNCATE, you're clearing out all rows and TRUNCATE is non-logged.
The UNION joins together 5 different result sets before inserting them into the target table -...
December 9, 2008 at 8:46 am
Garadin (12/9/2008)
Chris Morris (12/9/2008)
You tell us. There are no mindreaders here.I knew you were going to say that.
Thanks Seth made me larf that did! Now, about the Lottery tomorrow...
December 9, 2008 at 6:16 am
waykna (12/9/2008)
December 9, 2008 at 5:44 am
dastagirid (12/9/2008)
I WANT TO KNOW WHAT IS THE LAST 10 RECORDS IN MY DATABASE TABLES .IS ANY COMMAND IS THERE OR NOT ? ...
Please don't shout, UPPERCASE is shouting.
It's...
December 9, 2008 at 5:28 am
Chirag (12/9/2008)
Chris Morris (12/9/2008)
steveb (12/9/2008)
SELECT top 10 * FROM [YourTable] Order by YourId Desc
It really depends on how your table is orderd, otherwise the results will not really mean...
December 9, 2008 at 5:09 am
steveb (12/9/2008)
SELECT top 10 * FROM [YourTable] Order by YourId Desc
It really depends on how your table is orderd, otherwise the results will not really mean anything
That's the first...
December 9, 2008 at 4:27 am
Arun, you seem to be a little unsure of which db (of adhoc_payge and EPP_Prod) is on a remote server. Can you clarify please? Are either of them on a...
December 9, 2008 at 3:24 am
Viewing 15 posts - 9,211 through 9,225 (of 10,144 total)