Forum Replies Created

Viewing 15 posts - 5,596 through 5,610 (of 15,381 total)

  • RE: Script to list all tables and columns involved in Stored Procedure

    pretea (2/27/2014)


    If anyone can provide script to list all the tables and columns involved in a Stored Procedure would be very helpful

    This is a nearly impossible task to get 100%...

  • RE: VBS - ADODB 3709 error

    schleep (2/27/2014)


    Well if I'm understanding this -- and to be honest, I'm on very thin ice -- I can't check the state of the connection in my original code as...

  • RE: VBS - ADODB 3709 error

    schleep (2/27/2014)


    Sean,

    Actually I got your connection object example to work, needed to remove the

    Server. in SET oConn = Server.CreateObject("ADODB.Connection")

    So, I'll let it run for a couple of days, and...

  • RE: VBS - ADODB 3709 error

    Been quite some time since I worked with this but you don't have an explicit connection. You should declare your connection as an object so you manage it.

    conStr="Provider=sqloledb;Data Source=<SQLServer2008>;Initial Catalog=<mydb>;Integrated...

  • RE: ProperCase Function

    batesview (2/27/2014)


    I wonder if a CLR function would be worth considering here? .NET includes the System.Globalization.TextInfo.ToTitleCase() function which seems to do a pretty good job getting things properly capitalized. Not...

  • RE: DateDiff() function reported as NonDeterministic

    Jeff Moden (2/27/2014)


    Sean Lange (2/27/2014)


    dogramone (2/26/2014)


    IS there any specific reason you are using "DAY" within the datediff or did you mean to use d or dd?

    Using the explicit value is...

  • RE: DateDiff() function reported as NonDeterministic

    dogramone (2/26/2014)


    IS there any specific reason you are using "DAY" within the datediff or did you mean to use d or dd?

    Using the explicit value is generally considered better practice....

  • RE: Incorrect sequencing of row nos.

    Did you try this?

    ROW_NUMBER() OVER(PARTITION BY r.clientid, GenActivityCode ORDER BY appointmentdate asC) AS FollowUp_No

  • RE: Execute an SP from a trigger

    pbaldy (2/26/2014)


    Just wanted to say thanks Sean. I followed your recommendation and have a holding table populating from the trigger and a stored procedure that uses a cursor to...

  • RE: ProperCase Function

    dwain.c (2/26/2014)


    Sean Lange (2/26/2014)


    I made a slight modification to Dwain's that worked well for my purposes.

    Can't say I see that much of a resemblance but it is always good to...

  • RE: Are the posted questions getting worse?

    GilaMonster (2/26/2014)


    Blog and email working again. Finally.

    I hate DNS-related problems.

    Woohoo!!! I was trying to reference something there earlier today and noticed it was still down.

  • RE: DB will become read only. We cannot make any modifications here, How to avoid this scenario

    sankepalli (2/26/2014)


    Hello Folks,

    Suppose, there are 1 million records, if we insert all these records in the log file, it will become full & DB will become read only. We cannot...

  • RE: Execute an SP from a trigger

    pbaldy (2/26/2014)


    There could be a delay, but it would be measured in minutes rather than hours. The status field is used to let dispatchers know whether they can give...

  • RE: Execute an SP from a trigger

    pbaldy (2/26/2014)


    I appreciate the information and I'm always looking to improve. That said, it doesn't address my issue of executing a stored procedure on a linked server. I...

  • RE: ProperCase Function

    I came back to this thread today because I was trying to proper case some stuff around here. I needed to exclude tokens that contain at least a single digit...

Viewing 15 posts - 5,596 through 5,610 (of 15,381 total)