Forum Replies Created

Viewing 15 posts - 4,096 through 4,110 (of 9,643 total)

  • RE: Are the posted questions getting worse?

    Grant Fritchey (10/8/2009)


    Arggghhh. This is just frustrating.

    Hey, you must have helped. The problem is solved;-)

  • RE: Replace HTML Tags

    This should get you started:

    Declare @html varchar(max);

    Set @html = '<g:cn> The ComplanyName </g:cn>';

    Select

    @html,

    Stuff(@html, Patindex('%<g:cn>%', @html) + 6, Patindex('%</g:cn>%', @html) - (Patindex('%<g:cn>%', @html)...

  • RE: Performance Issue

    GSquared (10/8/2009)


    According to what he posted, it's using 1.3. That plus the swap file data makes it look like a memory pressure issue to me.

    Since we're pretty much shooting...

  • RE: Help needed to configure Report Server

    George is right that is a big subject, but basically if you take the defaults you are usually all set. Here's the basics for each one:

    • Server Status - this...

  • RE: Performance Issue

    GSquared (10/8/2009)


    Add more RAM. SQL using 1.3 and page file 1.8 on a 2 Gig machine means you're swapping to disk more than you should be.

    I don't even use...

  • RE: Are the posted questions getting worse?

    Dave Ballantyne (10/8/2009)


    Can anyone wave their magic sql wand ?

    http://www.sqlservercentral.com/Forums/Topic799860-149-1.aspx

    EDIT :

    Maybe its ItalianOlgi's first day on the job

    Abracadabra, alakazam, alashabast server run fast!

  • RE: Performance Issue

    Well, you haven't told us what the performance issue is. It looks like it is not something related to CPU, so that leaves it to memory, disk, network, design,...

  • RE: Stored Procedure Security

    I had pointed to the link on DMV's because the objects you were trying to access were DMV's and in the article it mentioned that a user needs VIEW SERVER...

  • RE: Date Range Parameters (between)

    Jeff Moden (10/7/2009)


    Excellent tip/reminder on the "next day" thing, Jack.

    Thanks. I used to be a BETWEEN guy, but about a year ago I had a discussion here on SSC...

  • RE: Date Range Parameters (between)

    mbrady5 (10/7/2009)


    Thats it....thanks! Is there a way to insert date picker controls in the report?

    If you add parameters to the report and select the Date datatype for them then SSRS...

  • RE: Stored Procedure Security

    I realize I am back in this thread long after the original problem was solved, but I'm wondering what the solution was and also wanted to offer some more information....

  • RE: Date Range Parameters (between)

    I think this is what you are looking for:

    SELECT

    Record_Id,

    DateCreated,

    LastUpdated,

    ...

  • RE: How do pros store Critical Employee info in tables?

    I'd store as varbinary with encryption done by the business layer.

  • RE: Date Range Parameters (between)

    I'm not sure what your question is? DO you want the Date parameter to be filtered to only allow a certain range of dates to be selected? Like...

  • RE: New DBA X old Logins in SQL SERVER

    Normally I don't like to post "I agree posts", but in this case I will. I agree with Silverfox. Clean up ownership issues and then delete the...

  • Viewing 15 posts - 4,096 through 4,110 (of 9,643 total)