Viewing 15 posts - 271 through 285 (of 506 total)
The answer is it depends. Fill factor of 100 is fine for a clustered index on an incrementing value if your adding data and not updating or deleting. A fill...
March 6, 2018 at 4:16 pm
How much of the 32 GB is SQL Server using?
February 27, 2018 at 2:32 pm
You can create the table in SQL Server before the import matching the data types and lengths from the source. The import wizard reads the first few hundred rows to determine...
February 27, 2018 at 11:45 am
Using the row_number() function in a view doesn't add a lot of overhead however adding an identity column to the target table might be faster.
February 27, 2018 at 10:23 am
February 27, 2018 at 10:19 am
I've used this method on tables with millions on rows, it runs pretty fast.
February 27, 2018 at 9:15 am
February 27, 2018 at 9:11 am
If P:\ is a mapped drive then it won't be available to SQL Server. You will need the UNC path.
February 26, 2018 at 6:08 pm
Without you providing a create table statement and sample data in the form of inserts very generically:
select non_agregated_column, max(date_column) MaxDate
from tbl
group by non_agregated_column;
February 26, 2018 at 10:19 am
With length delimited file I define one column with the total length in the openrowset, and use substring for individual columns.
February 26, 2018 at 10:12 am
February 26, 2018 at 10:04 am
So create logins for al the groups in the domain
February 26, 2018 at 10:01 am
It could be done that way. One could also use a stored procedure for inserts. Are you planning to keep an Access database as a front end?
February 21, 2018 at 5:48 pm
Viewing 15 posts - 271 through 285 (of 506 total)