Viewing 15 posts - 1,201 through 1,215 (of 6,400 total)
Only way I know is to write some powershell to look in C:\Program Files\Microsoft SQL Server\<version>\Setup Bootstrap\Log\<date>\Summary_<somestring>.txt
Where <version> is 80/90/100/110/120/130/140/150 etc based on the version of SQL you have installed.
Where...
January 23, 2020 at 8:30 am
Any form of recovery will need a backup.
The caveat would be if your in FULL recovery and have not backed up the transaction log after the point in time you...
January 23, 2020 at 8:18 am
No, the concepts in Azure are totally different to on-prem, as such you need load balancers and health probes and disk sync tools on top of the "old fashioned" stuff...
January 22, 2020 at 6:41 pm
DECIMAL(28,12) is 14 on the left, 12 on the right, DECIMAL(15,2) is 13 on the left 2 on the right.
What do you get from the following snippit? Anything where the...
January 22, 2020 at 3:56 pm
Azure has its differences to on-prem in every way, so while you build a cluster one way on-prem the process is totally different in Azure.
You can't just go and create...
January 22, 2020 at 3:48 pm
Have all the health probes and load balancers etc been setup? S2D synced etc?
What documentation have you been following? Hopefully the below...
Also sometimes, having the firewall disabled can again cause...
January 22, 2020 at 2:50 pm
As per your other post, your best posting this to an ORACLE forum not a Microsoft SQL Server forum.
Again ROW_NUMBER() and a CTE as per the "ORACLE TOP N" will...
January 22, 2020 at 12:52 pm
Take a look at the row_number() function, there is plenty out there on the web for "ORACLE TOP N" as a search term in your favourite search engine queries which...
January 22, 2020 at 12:49 pm
Well I will go back and re-look at my code see if I can perfect it in anyway to do ADO and OLE connections strings, always nice to have multiple...
January 21, 2020 at 2:14 pm
Hi Phil
In addition to VS you will also need to download SSDT (https://docs.microsoft.com/en-gb/sql/ssdt/download-sql-server-data-tools-ssdt?view=sql-server-2017), this will give you the required project types to be able to build a new SSRS...
January 21, 2020 at 9:33 am
A google search led me to StackOverflow where the following was cited, unsure if this is what you want Phil but probably a starter for 10.
Format - https://www.markit.com/news/InterestRates_<CURRENCYCODE>_<DATE>.zip
Example - https://www.markit.com/news/InterestRates_GBP_20200120.zip
January 21, 2020 at 9:11 am
IIRC you can only store one item in the object variable, so it has to be the connection string or the server.
I tried with server and catalog and it wouldn't...
January 21, 2020 at 8:25 am
Ok how I've done this in the past.
Create a variable of type "Object" to store the ADO.NET connection string table
Create a variable of type "String" to store the individual connection...
January 20, 2020 at 3:22 pm
Without a full sample mock up of the tables in question, is it simply just a case of adding MAX and GROUP BY
select
i.item_code,
i.cost_standard,
max((select item_price.item_price where item_price.price_group...
January 17, 2020 at 2:01 pm
Who or what is the source of the excel files? Could it be where the source is has exported them as 2013 office format or above? If it's a 3rd...
January 17, 2020 at 11:37 am
Viewing 15 posts - 1,201 through 1,215 (of 6,400 total)