Forum Replies Created

Viewing 15 posts - 21,256 through 21,270 (of 22,184 total)

  • RE: Tempdb - Create tables

    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 &...

  • RE: DBA job description ??

    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...

  • RE: How to join to table row with max column value in a View

    sg2000 (1/10/2008)


    I have a View defined as:

    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...

  • RE: Column Data Copy?

    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...

  • RE: SQL Server 2005 ( Schema Issue )

    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.

  • RE: SQL Server 2005 ( Schema Issue )

    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...

  • RE: What is your plan to achieve in Year 2008?

    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...

  • RE: TempDB is 13gigs and growing

    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...

  • RE: Database with odd usage pattern.

    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...

  • RE: How to grab a SQL Job among 100 peoples ?

    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...

  • RE: A Little Variety

    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...

  • RE: Why "SELECT 'Return Value' = @return_value'

    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...

  • RE: Copy Database without Disconnecting Users

    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...

  • RE: Copy Database without Disconnecting Users

    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...

  • RE: Database with odd usage pattern.

    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...

Viewing 15 posts - 21,256 through 21,270 (of 22,184 total)