Viewing 15 posts - 76 through 90 (of 1,409 total)
February 15, 2018 at 7:49 am
Does this work for you?
SELECT
CallNumber,
EquipmentFk,
InvoiceNum,
CallDate,
OrderNum,
OrderDate
FROM
(
SELECT
ROW_NUMBER()...
February 15, 2018 at 7:34 am
What happens if you execute the following SQLCMD command from a command prompt?sqlcmd -U username -P password -S server\dbase -Q"SELECT * FROM sys.databases"
This command...
February 15, 2018 at 7:16 am
February 15, 2018 at 7:00 am
February 12, 2018 at 5:28 am
Have you run the installation with administrator privileges? --> right click the executable and select "run as administrator"
February 12, 2018 at 1:05 am
By my understanding in this case most of the post migration tasks does not need to be performed. Because the versions stay the same all indexes, statistics and usage stats...
August 25, 2017 at 5:12 am
Btw: if you need to fill non-matching rows using information from other (previous) rows, take a look at the LEAD and LAG functions. This article on DatabaseJournal.com has a...
August 25, 2017 at 4:58 am
I've completed your query sample to include the filling of the tally table.
From your sample I notice a few mistakes. First you need a RIGHT outer join instead of...
August 25, 2017 at 4:51 am
Like Thom said already, it is quite possible to create such a view.
To select such a result I suggest to use a tally date table. Such a table...
August 24, 2017 at 6:41 am
I have modified my previous query a bit. The query below displays ALL deny permissions in the database and shows to which account or role it is granted. The last...
August 23, 2017 at 8:12 am
Good morning Experts,
An user is getting the below error:
The SELECT permission was denied on...
August 23, 2017 at 7:36 am
Being an invisible DBA is the goal for everyone who want's to be pro-active instead of re-active. A pro-active approach also saves time which can be used for the more...
June 21, 2017 at 6:59 am
removed this post
it was a remark that was already clearly mentioned in the original post :Whistling:
February 22, 2017 at 8:20 am
Viewing 15 posts - 76 through 90 (of 1,409 total)