Viewing 15 posts - 1,441 through 1,455 (of 1,838 total)
Pablo Campanini-336244 (12/7/2012)
December 10, 2012 at 7:35 am
I've designed stored procedures with XML parameters before to allow the calling application to insert or update multiple records at the same time with just one stored proc call. ...
December 7, 2012 at 1:55 pm
the easiest way to get all the information is the FILEPROPERTY function, such as:
SELECT DB_NAME() AS database_name, name AS file_name, physical_name,
size/128.0 AS size_meg,
...
December 7, 2012 at 1:40 pm
Database mail doesn't have a very large impact on a SQL Server. It does use Service Broker so it's not zero impact, but it's still lightweight while having the...
December 7, 2012 at 1:24 pm
scogeb (12/7/2012)
...I would like to set up some jobs to query all of the instances for certain things and then email me the results...
I don't know how many instances you...
December 7, 2012 at 1:13 pm
Try running this query to see how many rows and how big the table is, could this one table be too big for the client program to handle?
SELECT s.name AS...
December 7, 2012 at 8:17 am
ben.brugman (12/7/2012)
...is there a method to see how much progress is made?For example while clustering/unclustering a table.
there's a dynamic management view for that! sys.dm_exec_requests
http://msdn.microsoft.com/en-us/library/ms177648(v=sql.100).aspx
it has a column percent_complete that...
December 7, 2012 at 8:04 am
What you will need to balance are code reusability vs. performance. If you put too much functionality inside one stored proc, thent he query optimizer will have a more...
December 7, 2012 at 7:58 am
baabhu (12/7/2012)
December 7, 2012 at 6:07 am
Abu Dina (12/6/2012)
December 6, 2012 at 8:50 am
Doing some of these subqueries up front and storing them in temp tables is definitely a place to start. You typically want to hit each table as few times...
December 6, 2012 at 8:36 am
SQL_ME_RICH (11/22/2012)
December 6, 2012 at 8:19 am
Esentially that machine would have to be turned on all the time, so clients could connect to it and maintenance such as database backups, etc, could be run. That...
December 6, 2012 at 7:08 am
I'm not sure what you mean by install on a TP (not a server)?
December 5, 2012 at 1:01 pm
andy 56206 (12/5/2012)
SELECT cc.ResidencyZip as ZIP, e.EthnicityDesc,
Count(e.EthnicityDesc) as 'Record Count',
...
December 5, 2012 at 12:15 pm
Viewing 15 posts - 1,441 through 1,455 (of 1,838 total)