Forum Replies Created

Viewing 15 posts - 2,446 through 2,460 (of 3,221 total)

  • RE: Stored procedure grouping

    You may want to examine the grouping of your stored procedures using this group of create statements.

    CREATE PROCEDURE my_Proc_Name;1

    AS

    SELECT some column from some table

    GO

    CREATE PROCEDURE my_Proc_Name;2

    AS

    SELECT some other column...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: sql rounding numbers

    Do you have the ColdFusion debugger?. If so you can track the variable in ColdFusion to see it the problem exists within ColdFusion.

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Find data that has not changed for 5 days

    riga1966

    I took the liberty of adding a few additional entries to your sample data, and assumed that you meant 5 consecutive business days. I did not develope code...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Another trigger problem!

    Shortened up the list of columns but this select works, just addin all the column names that I skipped over to make testing quick and easier.

    INSERT INTO dbo.pedidos ([PedNum],[ESTID])

    select PedNum,...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Calling a stored procedure from another stored procedure in SQL 2008

    Use books On Line (BOL) the sQL" Server help file and read up on the ccommands EXECUTE and SP_EXECUTESQL

    Execute

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/bc806b71-cc55-470a-913e-c5f761d5c4b7.htm

    sp_executesql

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/01c64ab0-9227-475a-a59a-ed80f9333042.htm

    Further read in BOL about sub queries

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/9c1d634c-fc9f-42e8-ae6f-20b350ef5c90.htm

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Converting Hex String to Int

    Here is a script posted to SSC by Ofer Bester - all you need do, is a bit of copy and paste and you have what you want

    http://www.sqlservercentral.com/scripts/Miscellaneous/30094/

    I have used...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: table schema

    Refer to Books On Line (BOL) at

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/0a760138-460e-410a-a3c1-d60af03bf2ed.htm

    The above page provides an example T-SQL statement to do what you want to do.

    Be careful changing the schema may invalidate previously written stored...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Merge Multipal views into one

    albertvanwyk

    Without additional information it will be difficult to assist you in any meaningful manner. For example:

    a. How are risks rated, what makes one risk...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Finding a Mentor

    Hickshugh

    Try this link

    http://northtexas.sqlpass.org/

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: select within a select - how to address nulls

    Bullfrog

    You are likely to get help if you click on the link in my signature block and read and follow the simple instructions as how to post to assist those...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: getdate() - 1 Year

    Use Books On Line and lookup the Date and Time Functions (Transact-SQL)

    and read this

    https://www.sqlservercentral.com/blogs/lynnpettis/archive/2009/03/25/some-common-date-routines.aspx

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: connection strings

    willferguson

    OK so how do I get the connection string to change dynamically

    The Data Link Properties form is inter-active. The user selects

    1. a server from a drop down list

    2. A...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Protect against SQL Injection attacks ?

    ifila

    Have you entered "injection attacks" in the search box at the upper right hand corner of this forum page, and the read some of the articles? If so...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: SQL 2008 T-SQL

    anil

    the statement below is same for sql server 2005

    DECLARE @i AS INT

    .

    .

    set @i =100;

    .

    .

    SET @i =@i +25;

    The difference in the statementl are:

    DECLARE @i AS INT = 100 which...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: connection strings

    The connection string I utilized to attach to a SQL Express 2005 database is

    Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=TIPSnTRICKS;Data Source=substituteyourclientsmachinename\SQLEXPRESS.

    You might want to consider including in your application a...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 2,446 through 2,460 (of 3,221 total)