Viewing 15 posts - 1 through 15 (of 131 total)
I've worked on several applications which ride on the external data being received as a flat file every day on an SFTP. The processing time was going...
December 24, 2021 at 7:25 pm
I have a different opinion here as far as the OLTP is concerned. Having Clustered Index (but not utilizing it) will not benefit, instead will be overhead.
If you do...
December 23, 2021 at 7:51 am
Yes, agree that it would benefit in the read loads. But we should also consider the overhead of CI on write operations. So if the database is read-intensive then CI...
December 16, 2021 at 4:31 pm
I have a different opinion here as far as the OLTP is concerned. Having Clustered Index (but not utilizing it) will not benefit, instead will be overhead.
If you do not...
December 16, 2021 at 4:01 pm
I thought to answer it by writing my own stuff here. But then I typed the warning message provided by you on google search and it gave me the following...
December 16, 2021 at 3:40 pm
You may simply execute the sub-procedure from the main procedure using the following syntax.
EXEC <sub procedure name>
The main procedure will look somewhat similar as follow. Please note to supply the...
November 10, 2021 at 12:00 pm
I found an issue in the code you posted. You may try after correcting it.
Assign a length to the NVARCHAR in the following line of your code. If you'll not...
November 10, 2021 at 11:37 am
This is strange. Kindly help us understand if the size of your database has grown or the size of the database backup file has grown? If it is a database...
November 10, 2021 at 11:22 am
As far as Primary Key (without Clustered Index) is concerned you MAY have it on a GUID or an Identity column (mostly preferred). But if you ask Primary Key with...
October 25, 2021 at 8:31 am
I've extensively worked on financial calculations, and based on my experience I would not suggest using the WHILE loop for the amortization calculation if the number of transactions to be...
September 3, 2021 at 1:52 pm
I recommend the following steps:
September 3, 2021 at 1:27 pm
Do you know the number of files (smaller files) to be created out of the table? Or it's dynamic?
September 1, 2021 at 5:24 pm
I think Phil is trying to point out to check if both 32 bit and 64 bit of the Microsoft.ACE.OLEDB driver is installed or not? Please validate this once.
If your...
June 22, 2021 at 2:35 pm
Try SINGLE_BLOB instead of SINGLE_CLOB. Microsoft official documentation on OPENROWSET says
May 29, 2021 at 9:40 pm
I agree with the suggestions from Brian. Also, I was wondering Table Compression can help to save space. I've noticed up-to 80-85% of storage space savings with Table Compression. It...
March 7, 2021 at 10:14 pm
Viewing 15 posts - 1 through 15 (of 131 total)