Forum Replies Created

Viewing 15 posts - 286 through 300 (of 369 total)

  • RE: passthrough a parameter in an url to report doesn't return the param value

    Double posted! See reply in other posting:

    http://www.sqlservercentral.com/Forums/FindPost475040.aspx


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: passthrough a parameter by a url it doesn't pickup the value in the report

    &rs:Command=Render&rs:id_user=66

    You're making the same mistake I made when specifying parameters in a URL.

    The report parameters don't have the "rs:" "RS" is for Report Server parameters.

    So your URL should look...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Migrating from Dev to Prod

    I'm with Jeff and others about using a source code control system.

    In our environment we continually create new databases (for new customers) and upgrade all existing databases (customers) when we...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Vardecimal

    For what? Got an example of the PL/SQL that you're talking about?

    Oracle PL/SQL reference: http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/controlstructures.htm#sthref912

    I will state that the simple syntax example could be done with a SELECT statement,...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Compatibility Level

    If you create the new database, then the answer is correct.

    Not exactly true. It will be set 90 unless the model database has a lower compatibility level. (From BOL)....


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Vardecimal

    9i was when they also came out with CASE to "replace" decode... SQL Server had it for about a million years before that

    True. OK, one for the SQL Server...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Vardecimal

    They didn't even know 10G had a MERGE statement

    Actually, the MERGE statement was introduced in 9i (circa 2002) along with all of the new date and time datatypes that are...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: How can we see all database tables name and sizes

    I have done this before but when i right click the database thn there is no option of reports .Thats y i am confused that what is ssms .and plz...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Vardecimal

    Does 2005's (sp2) vardecimal option have any affect on "money" type fields?

    Per the BOL, money is 8 bytes and smallmoney is 4 bytes. Which means that they are...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: How can I Pass a Table variable in Stored Procedure?

    which is also checking if new data then insert and if existing one then it will update the data

    You could also be using the new MERGE statement that will be...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Passing multi-valued parameter selections in to stored procedures

    I would create two different secondary parameters, populated by the appropriate queries, and then show/hide the appropriate parameter based upon the selection of the first parameter.


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: exec immediate table permissions

    "with execute as owner" is the best way around that issue, but be very careful that you can't use that procedure to incorporate SQL INJECTION.

    Agreed. Prevention of SQL injection...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: exec immediate table permissions

    Why not code the procedure with WITH EXECUTE AS OWNER vs. a specific user id?

    If dbo owns the procedure, then the impersonation will occur under the covers. That is...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Forum Etiquette: How to post data/code on a forum to get the best help

    Thanks Jeff for this reminder.

    What we also need to eliminate are:

    1. The postings where the poster didn't even bother to look at the online documentation (Books Online aka BOL) first....


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Fulltext search error

    It would appear that the two servers are not configured the same.

    Check the document types supported and filters used by querying the sys.fulltext_document_types table on both servers and comparing the...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

Viewing 15 posts - 286 through 300 (of 369 total)