Viewing 15 posts - 1,036 through 1,050 (of 7,191 total)
December 8, 2017 at 4:31 am
Please will you post the actual execution plan (.sqlplan file) for your query when you run it against the full data set?
John
December 6, 2017 at 7:07 am
What is the exact name of the performance counter they're reporting on?
61 out of 64GB seems rather high - you need to leave some for the operating system,...
December 6, 2017 at 5:07 am
ps_vbdev - Wednesday, December 6, 2017 4:45 AMThese tables are staging tables I populate daily, currently with no indexes or constraints.
I think...
December 6, 2017 at 5:00 am
Please also post DDL for any indexes and constraints that you have on the tables.
John
December 6, 2017 at 4:40 am
So you want to exclude both rows? Please add Thom's rows and mine (below) to your sample data and show us what would be your expected results.
INSERT...
December 6, 2017 at 3:27 am
December 6, 2017 at 2:13 am
Looks like a job for the LAG or LEAD function, partitioned by ContSeqNo. Please post your table DDL in the form of a CREATE TABLE statement, your sample data in...
December 5, 2017 at 5:18 am
December 4, 2017 at 2:33 am
Search this site for a splitter function to split the string into individual elements. Then convert each element to an integer - here's a page with a few...
November 30, 2017 at 9:32 am
November 30, 2017 at 9:26 am
Steve
You're probably going to have to reverse engineer it from the catalog views. sys partitions is a good place to start. You might even find someone who's done...
November 30, 2017 at 9:13 am
You haven't built your string properly, and like Sue said, you're not even executing it. I don't know much about VB, so this is almost pseudo-code, but try this:
November 30, 2017 at 8:46 am
That isn't even going to compile, since you haven't declared @FirstName and @LastName. Also, please post the definition of stored_procedure_to_be_exec_first_time_only.
Do you only want stored_procedure_to_be_exec_first_time_only to be executed once - ever? ...
November 30, 2017 at 7:10 am
Which stored procedure do you want to restrict to a single execution - the calling one, or the called one? And what do you mean by "first Time", given that...
November 30, 2017 at 4:54 am
Viewing 15 posts - 1,036 through 1,050 (of 7,191 total)