Forum Replies Created

Viewing 15 posts - 7,381 through 7,395 (of 18,926 total)

  • RE: TRUNCATE in TRANSACTION

    cengland0 (1/5/2011)


    sjimmo (1/5/2011)


    Nice way to make some feel soo old:hehe:

    I agree. I was programming in the late 70's (not SQL) so I am way older but don't want to...

  • RE: Parameters SSRS- BIDS

    Then you need to manually add the parameter to the report. In design mode, if you right click under the footer section of the report you should see a...

  • RE: TRUNCATE in TRANSACTION

    sjimmo (1/5/2011)


    Ninja

    Wow so basically sql, even 1st commercial release, is way older than me

    Nice way to make some feel soo old:hehe:

    :w00t: Now you know why I chose Anakin Skywalker...

  • RE: Parameters SSRS- BIDS

    No you just needed to say from which table / other object to take the period from.

  • RE: TRUNCATE in TRANSACTION

    Wow so basically sql, even 1st commercial release, is way older than me :w00t:

  • RE: I want to edit SSRS Projects Remotely

    Yes. You can deploy your report from bids to any server (need physical access on the machine).

    You can also use the web interface from any machine to remotely change...

  • RE: Parameters SSRS- BIDS

    Assuming the parameter named period. The SQL variable will be called @period. You don't need to declare it. Juste use it directly in the query.

    SELECT * FROM...

  • RE: TRUNCATE in TRANSACTION

    Victor Kirkpatrick (1/5/2011)


    Columns in the IN clause! 22 years of sql and that was a first. You're never too old to learn. Thanks!

    Is SQL really THAT old? :hehe:

  • RE: DB Reverts to Single-User Mode

    Thanx. But what I need is to be able to control how much data I keep in the trace (above and beyond 5 files @ 20 mb).

  • RE: DB Reverts to Single-User Mode

    ALZDBA (1/4/2011)


    to import and process the default trace files have a look at

    http://sqlblog.com/blogs/tibor_karaszi/archive/2008/06/19/did-we-have-recent-autogrow.aspx

    It is a good starting point to figure out when things happen !

    Then start a regular trace...

  • RE: Upper/lower case text

    Lowell (1/4/2011)


    sc-w (1/4/2011)


    I nearly missed that post, i tried the following but it generates an error. Any thoughts?

    update dbo.wce_contact set firstname = dbo.ProperCase(firstname)

    Error:

    Msg 1014, Level 15, State 1, Line 1

    TOP...

  • RE: Upper/lower case text

    GSquared (1/4/2011)


    Jeff:

    I did a speed test like this:

    SET NOCOUNT ON;

    go

    IF OBJECT_ID(N'tempdb..#Strings') IS NOT NULL

    DROP TABLE #Strings;

    IF OBJECT_ID(N'tempdb..#T1') IS NOT NULL

    DROP TABLE #T1;

    IF OBJECT_ID(N'tempdb..#T2') IS NOT NULL

    DROP TABLE #T2;

    IF OBJECT_ID(N'tempdb..#T3') IS...

  • RE: Upper/lower case text

    That has to be something else. Are you using a view?

    Is the view working all by itself in a simple select statement?

  • RE: Upper/lower case text

    Jeff Moden (1/4/2011)


    You know me... I'll always be one of the first to come up with a Tally Table solution and (now) to avoid scalar UDF's like the plague. ...

  • RE: DB Reverts to Single-User Mode

    kmaida (1/4/2011)


    Yes, that worked. There are only about 8 jobs in there, so not much to find, but they all came up.

    Do you have any external suites that do maintenance...

Viewing 15 posts - 7,381 through 7,395 (of 18,926 total)