Viewing 15 posts - 1 through 15 (of 22 total)
What I like the best about Hyper-V 3.0 as well as VMWare 5.0 and 5.1 is the fact that Guest OS NUMA-awareness is finally available.
Before these versions, having a virtualized...
October 18, 2012 at 12:21 am
Virender Sihag (7/16/2012)
could anyone explain me what is better ..sp_updatestats or sp_recompile any why?
The answer as always is : it depends.
Both do something completely different. One updates statistics and...
July 17, 2012 at 1:07 am
Lowell (5/22/2012)
to change this to a set base, wer would need to see the defintiino...
May 22, 2012 at 8:07 am
DBA_SQL (5/21/2012)
OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.".
Msg 7321, Level 16, State 2, Line 5
An error occurred...
May 22, 2012 at 12:46 am
DBA_SQL (5/21/2012)
Tried this script, but didn't worked..can u help out plz..Declare @Tabname nvarchar(100)
set @Tabname = 'C:\..\...\packages\*.xls' --Given path of the folder
SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\..\...\packages\@Tabname.xls', '@Tabname')
What error messages...
May 21, 2012 at 9:56 am
DBA_SQL (5/21/2012)
This query looks good. But, if we have 100 tables in a folder, do we need to keep change the table name, pathname for all 100 tables manually?
That's kinda...
May 21, 2012 at 9:37 am
NOTE: Important - This example is for an exclusively x64 environment without any Office x86 parts and with this
http://www.microsoft.com/download/en/details.aspx?id=13255
installed
********************
INSERT INTO ... Your_Table
SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Excel 12.0;Database=C:\excel-sql-server.xlsx',...
May 21, 2012 at 6:46 am
Yes, there is. Here's the PowerShell and AMO (Analysis Management Objects) way. 😉
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices") | Out-Null;
[Microsoft.AnalysisServices.Server] $srv = New-Object Microsoft.AnalysisServices.Server;
[string]$ServerName = "Server\Instance";
$srv.Connect($ServerName);
$BackupDestination = $srv.ServerProperties.Item("BackupDir").Value;
$BackupDestination;
May 18, 2012 at 1:00 am
Well, it depends.
If you have a standard 18-drive SAN, it doesn't matter whether you have one large LUN or several smaller LUNs all using the same spindles.
You really only have...
May 17, 2012 at 11:40 pm
Eugene Elutin (5/15/2012)
kwe477 (5/15/2012)
...
Dynamic queries:
are nothing more than ad-hoc queries built using a dynamic string. Dynamic queries are considered ad-hoc queries by the optimizer because they...
May 15, 2012 at 8:35 am
Have you checked this one out already?
http://blogs.msdn.com/b/psssql/archive/2010/06/23/my-kerberos-checklist.aspx
May 15, 2012 at 7:43 am
you could try a
SELECT * FROM [sys].[tables]
where schema_id = 'your_schema_id'
May 15, 2012 at 7:26 am
Excerpt from below link:
Ad-hoc query:
created and executed manually through a client. e.g., a user opens up SSMS, writes a query and executes it.
Dynamic queries:
are nothing more than ad-hoc queries...
May 15, 2012 at 7:18 am
a starting point might also be to drop the indexes on at least
tblStore
tblSummary
For
tblSticker
tblStickerRange
that might be a solution also, but is depended on the size/config of your box.
Also, am I reading...
May 15, 2012 at 2:41 am
Also it could be useful to know the HW-Config of your Box, namely
- CPUs
- I/O Channels
- Memory
- possibly NUMA aware
- what version of SQL Server with Service Pack
- x64/x86
May 15, 2012 at 2:35 am
Viewing 15 posts - 1 through 15 (of 22 total)