Viewing 15 posts - 46 through 60 (of 78 total)
I believe we should always have a DB server just for developers to do some fun coding and get understanding of different functionalities. In our development environment we have few...
August 31, 2017 at 8:22 am
I think I got confused with the word, " have a table with a PK that is also the clustered index", I translated as i already have clustered index and created...
August 31, 2017 at 8:01 am
One more solution.
create table #ValueTracking
(
ID int
,[2017_01] int
,[2017_02] int
,[2017_03] int
,[2017_04] int
,[2017_05] int
,[2017_06] int
,[2017_07] int
)
insert...
August 30, 2017 at 2:54 pm
August 30, 2017 at 2:03 pm
Sample data is actually very clean. Why suggested name change, for clean data it is suggested data which is not clean and for dirty data a clean value is assigned....
August 30, 2017 at 1:29 pm
Also because of the problems...
August 30, 2017 at 12:54 pm
Most of the dev's hate hearing from me because all of my suggestions require...
August 30, 2017 at 12:49 pm
You are taking Time component of getdate() in @t, so obvious it will ignore the date part. with this script you'll get the minute difference from midnight only. Elaborate the...
August 30, 2017 at 9:02 am
Using pivot in SQL should be your best bet. try using below code, this may be helpful. all unique name for the step need to be added in the query...
August 29, 2017 at 4:02 pm
Create view and run the below query to get the dependent objects
SELECT DISTINCT referenced_entity_name
FROM sys.dm_sql_referenced_entities('dbo.' + @viewname, 'OBJECT') ref
WHERE referenced_entity_name IS NOT NULL
August 29, 2017 at 3:36 pm
August 29, 2017 at 2:29 pm
I have reimbursement for food or travel for some occasion is always an issue (at least most of the companies) it may not be the policy of a company but...
August 29, 2017 at 2:22 pm
HIPPA is very broad. but Audit and logging of access to data is very important. even if application is showing data as read only, there should be a log what...
August 28, 2017 at 4:09 pm
August 28, 2017 at 9:55 am
I don't think there is a direct way of using 3 part naming convention to execute cross database objects. but you can look into elastic query if that is an...
August 25, 2017 at 1:03 pm
Viewing 15 posts - 46 through 60 (of 78 total)