Forum Replies Created

Viewing 15 posts - 16 through 30 (of 35 total)

  • RE: Display Box Plot Mean and Median Lines

    What does your query look like for this graph?

  • RE: Display the SELECT statement for any table

    Thank you for the script. I have updated this to a stored procedure that I can pass in the table name:

    CREATE PROCEDURE dbo.UTIL_DynamicTable_SELECT

    @mStrTable varchar(255)

    AS

    -----------------------------------------------

    --Display the SELECT Statement for...

  • RE: Database Engine vs. UI SQL Statements

    This is why you are the MASTER and I am the one seeking wisdom. When I stated DML i was thinking in terms of data manipulation but you are...

  • RE: Database Engine vs. UI SQL Statements

    GillaMonster,

    Our argument was not over SELECT statements but more over DML. Also if you were performing more than just an UPDATE or INSERT or DELETE he stated he would...

  • RE: Database Engine vs. UI SQL Statements

    He did claim that he reserved procedures for complex items like a cascading delete of records that needed to be encapsulated in a transaction. However, he was insistent that...

  • RE: Database Engine vs. UI SQL Statements

    Would you consider it bad programming to use SQL Stored Procs vs. Adhoc queries? His argument is that when you are hitting a large data set, the stored procedures...

  • RE: Deploy Reports to .NET Application

    The database is a SQL server database however the application will not be in our control once it is distributed to our clients. We can't demand that SSRS be...

  • RE: Deploy Reports to .NET Application

    Do you recommend any reporting tools to use for our custom .NET application or is this outside the scope of sqlservercentral and more intended for .NET developer sites?

  • RE: Execute a function for each row in a result set

    Thank you for the response. I have a table called DBSpec which contains a list of fields and their respective table names. I also have the associated parent...

  • RE: Execute a function for each row in a result set

    I found this on StackOverflow by U07CH:

    Declare @TableUsers Table (User_ID, MyRowCount Int Identity(1,1)

    Declare @i Int, @MaxI Int, @user-id nVarchar(50)

    Insert into @TableUser

    Select User_ID

    From Users...

  • RE: Query Design Question

    So what you are saying is that if I change the code that you provided to the following, I would see a poor performance from the system? I anticipate...

  • RE: Query Design Question

    I thought about this however not every field will be yes no. I am not trying to be nit picky and this is my example but I think that...

  • RE: Query Design Question

    Can you elaborate on the Schema Bound UDF? Are you suggesting that I should create a function that refernces the correct column and return the appropriate value from the...

  • RE: Query Design Question

    I am not giving you the exact code from my database but I have created a sample of 5 fields for you:

    The lookup table is tblYN and has two columns...

  • RE: Query Design Question

    I understand that I need to create an inner join with the lookup table however my question is "Do i really need to create 25 inner joins for all 25...

Viewing 15 posts - 16 through 30 (of 35 total)