Viewing 15 posts - 5,386 through 5,400 (of 5,590 total)
Lynn Pettis (4/29/2009)
Roy Ernest (4/29/2009)
April 30, 2009 at 4:50 pm
Gail - can you give a good answer to this? I kinda thought along these line also.
http://www.sqlservercentral.com/Forums/Topic707743-338-1.aspx
April 30, 2009 at 4:45 pm
You can always put your code up here as an attachment to a post.
April 30, 2009 at 4:41 pm
There's an article coming out soon (ask Steve, not me, when that will be) that will tell you everything that you need to know in comparing table variables to temporary...
April 30, 2009 at 4:28 pm
FYI, I just did a small test. I took one of the procedures that I mentioned in another post, you know, the one that has 3 selects, each with 32...
April 30, 2009 at 10:59 am
This ended up being more complex that I thought when I first jumped into it. Lot's of conditions to check for. It can probably be improved upon, but... it's working.
April 30, 2009 at 9:14 am
How's this?
-- first build a small numbers table
declare @Numbers TABLE (Number int PRIMARY KEY CLUSTERED)
;with CTE AS
(
select ROW_NUMBER() OVER (ORDER BY c1.OBJECT_ID) RowNumber
from sys.columns c1, sys.columns c2
)
insert...
April 30, 2009 at 9:08 am
swathi.g (4/30/2009)
The From_DT value is 04/30/2009
and TO_DT Value in 02/05/2009
It means that Total Number of leaves in April will be 2
and for may it...
April 30, 2009 at 8:47 am
Well, I don't know what to tell you. This is the method that I use, and the log files from the jobs do contain the output from the procedure. From...
April 29, 2009 at 8:54 pm
GSquared (4/29/2009)
It has to go through a schema/compilation lock every time it's run in that case, which means it can only be run by one connection at a time.
Hmmm. In...
April 29, 2009 at 8:29 pm
Anil Kumar Kurra (4/29/2009)
I am having a Stored Procedure Or SQL Script to be attached to Job Scheduler. When this Stored procedure executes it generates some...
April 29, 2009 at 8:17 pm
John Deupree (4/29/2009)
April 29, 2009 at 8:10 pm
GSquared (4/29/2009)
If you can put the create scripts for the tables into the forum, and list what columns you want in the final query, we can help you write it.
We'd...
April 29, 2009 at 12:46 pm
Hey Roy! Great article.
What happens if a stored procedure is called with the schema qualifier, BUT inside the stored procedure calls to tables aren't schema qualified?
ie.
CREATE PROC dbo.TEST1 As
select *...
April 29, 2009 at 12:41 pm
Nothing about the databases or the servers the database is on was changed.
April 29, 2009 at 11:36 am
Viewing 15 posts - 5,386 through 5,400 (of 5,590 total)