Viewing 15 posts - 21,256 through 21,270 (of 22,184 total)
I don't know if I'd place a hard value on it like 1mb, but I suspect he meant that since table variables have no statistics, they're quick to build &...
January 10, 2008 at 12:45 pm
Yeah, that list seems a bit light. I'd ball park it. If you're close, go for it. Unless it specifically states something like "Extensive expertise with MDX" or some other...
January 10, 2008 at 12:40 pm
sg2000 (1/10/2008)
SELECT dbo.TabA.Col1, dbo.TabB.Col2
FROM dbo.TabA LEFT OUTER JOIN
dbo.TabB ON dbo.TabB.ForgnKey = dbo.TabA.PrimKey
In this case, I got all of TabB col2 on the View...
January 10, 2008 at 12:35 pm
You must have a trigger in place. Simply running that query as written should do what you want. Why you need to keep two copies of the same data I...
January 10, 2008 at 12:25 pm
Oh, and if you want more responses, post your question as a new topic. You'll get a lot more people reading it that way and you'll probably get better responses.
January 10, 2008 at 12:05 pm
If I understand the question, it sure sounds like a similar issue. If your SQL Server is running under the local System account, it might not have access to the...
January 10, 2008 at 12:04 pm
Echoing Gail, I'd like to get my 2008 skills to an adequate level. Also, I intend to try to present at PASS this year. Other than that, learn, improve, grow...
January 10, 2008 at 7:07 am
We ran into a problem recenlty where an app was leaving open connections and open transactions that were filling tempdb. You might look for old open connections, especially since it's...
January 10, 2008 at 7:00 am
Don't try to compare what you know to Itzik. I've taken his advanced tsql class twice, read tons of his articles and his books and gone to his lectures at...
January 10, 2008 at 6:20 am
Hey Sandy,
We are actually, for the moment, not looking, but only because we took on a consultant after spending a year trying to find a senior level dba. It's...
January 10, 2008 at 6:04 am
Reading this made me think of my red-neck, hillbilly inbred cousin who said, and I quote, "If they don't have it at Wal Mart, we just don't buy it."
So, assuming...
January 10, 2008 at 6:00 am
EXEC @ReturnValue = procname @param='value'
We use this in a pretty common fashion with the added code:
IF @ReturnValue <> 0
BEGIN
--handle the error
It works under the assumption that the procedure is going...
January 9, 2008 at 11:36 am
Normally I'd say "Sure, just create a stored procedure" but since you don't use them... yes, you can do this from a VB app. You simply have to have a...
January 9, 2008 at 10:34 am
I'm assuming a regular backup and restore to a different location are off the table?
You could do a snapshot backup which are nearly instantaneous but to restore from one of...
January 9, 2008 at 8:29 am
I'd be cautious about using the temp tables because it's going to smack tempdb pretty hard. Since this is basically a paging query (give me page 1 (records 1-300), page...
January 9, 2008 at 7:52 am
Viewing 15 posts - 21,256 through 21,270 (of 22,184 total)