Viewing 15 posts - 136 through 150 (of 506 total)
Warning August 30, 2018 at 3:55 pm
You will need the space this large table takes up and downtime.
In SQL Server 2008 Resource Governor was introduced. It allows you to control CPU, Physical IO and Memory effectively throttling run away queries.
https://docs.microsoft.com/en-us/sql/relational-databases/resource-governor/resource-governor?view=sql-server-2017
August 29, 2018 at 5:17 pm
As far as I know, and that ain't far, SQLDoc generates database documentation, not entity relationship diagrams (ERD). In SSMS you can generate an ERD. Right click the Database Diagrams...
August 29, 2018 at 12:09 pm
Are you using: August 29, 2018 at 11:57 am
BEGIN TRY
..
END TRY
I wouldn't create the permanent table in tempdb. If you aren't granted permissions in the database your procedures are in, ask for the permanent table to be created for you...
August 29, 2018 at 11:54 am
Is this a one off, or will this be regularly scheduled load?
Try specifying just the comma delimiter in SSIS, load into a staging table and write a stored procedure...
August 29, 2018 at 11:45 am
If you have a version that supports table partitioning I would read up on that.
August 29, 2018 at 10:37 am
What has all this to do with applying unique indexes or constraints to enforce uniqueness in a table?
August 27, 2018 at 4:38 pm
I would agree with you on that. ADODB is better for SQL Server objects. I would like it better if MS made use of .net framework August 27, 2018 at 4:32 pm
DAO for Access objects specifically is easier. To get the same functionality you would need both ADO and ADOX. So say I want to write a script to link every...
August 27, 2018 at 12:50 pm
Since the biggest bottle neck (or narrowest I guess) for databases is I/O, for servers with adequate memory you will see an improvement for read especially as more data will...
August 27, 2018 at 11:48 am
DAO is still the object model of choice when working with Access objects. You can use both if you want to and I have and do. Certain things are much...
August 27, 2018 at 11:36 am
Msg 241, Level 16, State 1, Line 27
Conversion failed when converting date and/or time from character string.
August 24, 2018 at 5:08 pm