Viewing 15 posts - 16 through 30 (of 35 total)
What does your query look like for this graph?
January 14, 2014 at 6:40 am
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...
August 22, 2013 at 10:23 am
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...
April 29, 2013 at 4:18 pm
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...
April 29, 2013 at 3:19 pm
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...
April 29, 2013 at 3:16 pm
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...
April 29, 2013 at 1:07 pm
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...
January 5, 2012 at 10:15 am
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?
January 5, 2012 at 9:49 am
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...
November 22, 2011 at 4:20 pm
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...
November 22, 2011 at 2:17 pm
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...
August 12, 2010 at 12:16 pm
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...
August 12, 2010 at 11:33 am
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...
August 12, 2010 at 11:28 am
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...
August 12, 2010 at 10:10 am
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...
August 12, 2010 at 9:03 am
Viewing 15 posts - 16 through 30 (of 35 total)