Viewing 15 posts - 2,356 through 2,370 (of 2,610 total)
redgate have a tool for generating test data that looks quite good. I don't know how much it costs but it would save a lot of effort.
https://www.red-gate.com/hub/product-learning/sql-data-generator/how-to-generate-various-forms-of-realistic-data-for-testing-development-and-prototypes
May 1, 2018 at 3:30 am
Misha_SQL
You might need to add System.Data to the project...
April 20, 2018 at 10:03 am
VB Script is different from normal VB, you can't declare a variable to be a type. e.g. you can't do "Dim i as integer" you just have to do: "Dim...
April 19, 2018 at 3:55 am
It look like the script shouldn't run at all.
you have you have Dim oExcel As New Microsoft.Office.Interop.Excel.Application = Nothing
then later down you have:
April 18, 2018 at 10:44 am
Working now on this link: http://www.sqlservercentral.com/articles/ADO.NET/168710/
But not the one at the top of this page (https://www.sqlservercentral.com/articles/C%23/168710/)
April 16, 2018 at 8:54 am
7. on the cloud you are using someone else's machine
March 7, 2018 at 10:36 am
Have you tried updating the FK column values to NULL before deleting the rows?
February 16, 2018 at 4:33 am
One of our systems has about 500 stored procedure scripts that need to be run on a release. To do this I concatenate all the scripts together in one file....
February 16, 2018 at 4:29 am
All other things being equal it will take longer to update the table with more columns. If only because there is going to be more disk IO in reading the...
December 17, 2017 at 10:12 am
Create Procedure sp_Truncate_Address
@DBName varchar(30) =...
November 3, 2017 at 10:57 am
If you set the compatibility level on the database to 2008, do queries still take a long time to run?
October 4, 2017 at 10:29 am
August 18, 2017 at 6:16 am
I'm not sure, I didn't mean Regions( RegionID) as that's already the PK.
Just ignore that index for now.
August 16, 2017 at 4:14 pm
Try adding the following indexesCREATE INDEX IX_#ReportDealCore_1 ON #ReportDealCore(DealID)
CREATE INDEX IX_Activities_1 ON Activities(DealID,Type)
CREATE INDEX IX_DealProperties_1 ON DealProperties(DealID,IsMainProperty,DateRemoved)
CREATE INDEX IX_Regions_1 ON Regions(CityID)
CREATE INDEX IX_DealsToClients_1...
August 16, 2017 at 2:17 pm
Viewing 15 posts - 2,356 through 2,370 (of 2,610 total)