Viewing 15 posts - 766 through 780 (of 1,170 total)
You can add and use Access as linked server but only if your Office installation is a 64bit as SQL Server is.
EXEC sp_addlinkedserver
@server = 'AccessTest'
,@provider...
December 6, 2013 at 3:27 pm
Try to make a log of the executions/SPs in order to locate your issue. It seems the executions order and theirs finishing times are important in your case.
December 6, 2013 at 3:04 pm
D.Schrenker (12/5/2013)
We're having issues when our database backups are running SQL Server takes all of the...
December 6, 2013 at 2:58 pm
How is your set up in the sys.sp_configure?
you can run this for any case:
exec sys.sp_configure 'show advanced options',1
reconfigure with override
go
exec sys.sp_configure 'xp_cmdshell',1
reconfigure with override
go
Regards
IgorMi
December 6, 2013 at 2:07 pm
Hi
You can use the performance monitor (perfmon.exe) by choosing "Log growths" and "Data file(s)" under the MSSQL$Instance:Databases for a specific database.
Regards,
IgorMi
December 6, 2013 at 1:55 pm
GilaMonster (12/2/2013)
December 3, 2013 at 3:23 am
Hi
You have data conversion incompatibility. Check what are doing your "Data conversion" and "OLE DB Source" components and whether it corresponds to the respective data types of the columns in...
December 2, 2013 at 12:27 pm
Carlo Romagnano (12/2/2013)
Koen Verbeeck (12/2/2013)
Evgeny (12/1/2013)
What is wrong with this answer?CREATE NONCLUSTERED INDEX IDX_A ON #temp1(a)
+1
Why is this answer "incorrect"?
Flawed question today, better luck next time đŸ™‚
It's wrong because...
December 2, 2013 at 7:03 am
PiMané (12/2/2013)
IgorMi (12/1/2013)
Did you make indexes analysis? Aren't there a lot of missing indexes?
How about queries,...
December 2, 2013 at 6:30 am
RSCI will increase a lot the usage of the tempdb. You should have ready tempdb.
Did you make indexes analysis? Aren't there a lot of missing indexes?
How about queries, are they...
December 1, 2013 at 6:35 am
All options are true except this one
"CREATE CLUSTERED INDEX IDX_A ON #temp1(i,a)"
You should correct your question.
December 1, 2013 at 5:10 am
Hi
The increment of an identity column (user_id) is not rollback-able. So if you're having rollback transactions than the seed value will just go forward.
Regards,
IgorMi
November 28, 2013 at 5:40 am
One mistake is the overdozed usage of cursors. In most of the cases cursors can be replaced with set-based statements.
One another mistake is the implicit conversion in queries because of...
November 26, 2013 at 3:37 pm
Koen Verbeeck (11/26/2013)
IgorMi (11/26/2013)
These settings I've done on a client machine with RAM of 128 GB were following:
max server memory set to 112 GB
min server memory set to 64...
November 26, 2013 at 3:48 am
Hi,
These settings I've done on a client machine with RAM of 128 GB were following:
max server memory set to 112 GB
min server memory set to 64 GB
My suggestion for...
November 26, 2013 at 3:18 am
Viewing 15 posts - 766 through 780 (of 1,170 total)