Viewing 15 posts - 2,821 through 2,835 (of 13,461 total)
showing us the actual query would help, and whether the query is performed in a procedure or ad hoc;
the actual execution plas, posted as .sqlplan, would let us identify the...
December 9, 2013 at 12:29 pm
Cpt_Picard (12/9/2013)
December 9, 2013 at 10:16 am
alan.hollis 1097 (12/4/2013)
We have some software which is using a virtual host name of the SQL Server Listener in the query and...
December 9, 2013 at 6:53 am
hornak.john (12/8/2013)
There is no security on the file side of the linked server so I don't know how to set up the security on the...
December 9, 2013 at 6:30 am
based on the name, [BO_Custom.dbo.Property_Coordinators_Summary] appears to be a view, which probably is a GROUP BY on the Property_Coorindators anyway.
you know your data much better than we do, especially...
December 9, 2013 at 6:22 am
I've always moved CREATE statements to a single file, and INSERT statements are not insert statements at all, but actually files exported via BCP;
then i write the appropriate BCP/BULK INSERT...
December 9, 2013 at 6:09 am
in both SQL and SQLite, a view is a saved select statement.
it's pretty much just CREATE VIEW VIEWNAME AS SELECT.....
where are you having trouble? do you want to materialize the...
December 7, 2013 at 11:58 am
one of the things that is going to make this slow is the linked server;
the execution plan will end up copying the entire table over to tempdb, and THEN...
December 6, 2013 at 1:29 pm
you can and will find that login and logout events could be missing, due to connection pooling.
this stackoverflow post explains it, with the linky to the microsoft article as well:
http://stackoverflow.com/questions/279401/sql-connection-pooling-and-audit-login-logout
http://msdn.microsoft.com/en-us/library/8xx3tyca.aspx
your...
December 6, 2013 at 12:07 pm
DBANoobie (12/6/2013)
I was recommended to this site for all the wealth of knowledge and I was hoping ya'll could assist me with this. I am new to the DBA...
December 6, 2013 at 10:25 am
dan-572483 (12/6/2013)
Then why would my simple recovery model databases not come online with copies of the original log files in the new location?
does the startup account of SQL server have...
December 6, 2013 at 8:48 am
This way be an object name, and optionally parameters after object name
exec @sqlStr
THIS way, you can execute a string command: note the parenthesis!
exec(@sqlStr )
December 5, 2013 at 2:36 pm
As I understand it, there will be no significant impact at all;
if you look at the execution plan, all objects are extracted out to their four part naming convention anyway;
I...
December 5, 2013 at 2:02 pm
On The server NJACCOUNTING01, look at the indexes on the table marlin_test.dbo.apdoc
an index like this would greatly help the query, i believe:
CREATE INDEX IX_apdoc ON dbo.apdoc(Crtd_DateTime,DocType,VendId) INCLUDE (user1,vendid)
see what indexes...
December 5, 2013 at 12:43 pm
Tina there's quite a few things i'd do differently as far as the naming of tables and columns; Tables don't need tbl_ in front of the name, and the PK...
December 5, 2013 at 12:31 pm
Viewing 15 posts - 2,821 through 2,835 (of 13,461 total)