Viewing 15 posts - 961 through 975 (of 1,170 total)
Hi,
You can download .mdf files from here http://msftdbprodsamples.codeplex.com/
and then after restoring them make backup (.bak) files.
Regards
IgorMi
April 21, 2013 at 1:56 pm
Hi
You can use this code to determine if a table has primary key (a condition for 2NF)
declare @2NF_flag bit
set @2NF_flag=convert(bit,0)
if objectproperty(object_id('[schema].[Table]'),'IsUserTable') = 1
if (objectproperty(object_id('[schema].[Table]'),'TableHasPrimaryKey')=1
/*or objectproperty(object_id('[schema].[Table]'),'TableHasClustIndex')=1*/)
...
April 20, 2013 at 7:13 am
Hi
If you maintain your log file on the best then you're close to the optimal number of VLFs. This link can help you http://www.sqlskills.com/blogs/kimberly/8-steps-to-better-transaction-log-throughput/
Regards
IgorMi
April 20, 2013 at 3:09 am
Hi
Interesting questions.
For example the following simple code would help you find the computed columns (violation of 3th normal form) for a table:
select t.name [TableName], c.name [ColumnName]
from sys.tables t
join sys.computed_columns c...
April 20, 2013 at 2:46 am
kapil_kk (4/18/2013)
I think I have misunderstood the way to execute the given query...
After seeing comments First Attempts, second, third I executed one by one those insert query and forget about...
April 19, 2013 at 2:36 am
Hi,
We had similar problem recently. Do you have the option "with recompile" in your stored procedure? We've resolved it by attaching that option to the sp.
Regards
IgorMi
April 18, 2013 at 9:19 am
What version of SQL Server you use. Check it in msdn library.
I presume you use FREETEXT() and/or CANTAINS(). Have you tried both?
Regards
IgorMi
April 18, 2013 at 9:17 am
Hi,
Full Text Search supports more than 50 languages - http://msdn.microsoft.com/en-us/library/ms142571(v=sql.105).aspx
Regards
IgorMi
April 18, 2013 at 8:57 am
kpann (4/15/2013)
I want to skip or ignore those files that have a "unmatching" pattern in them (i.e, a_unmatched_b.xlsx, b_c_unmatched.xlsx, and so on). Is it possible to do this in SSIS?
Hi
Yes...
April 15, 2013 at 2:53 pm
Hi
So, what is the difference between a query with missing index on a column in its WHERE clause executed as exec sp_prepexec @sql_stmt or exec sp_executesql @sql_stmt, and the same...
April 15, 2013 at 2:08 pm
Hi
It depends on other factors. For example it depends what settings are ON and OFF when your connection (ODBC,OLE DB) passes the queries to SQL Server and what the setting...
April 15, 2013 at 1:25 pm
Hi
Another help could be found here
http://www.idera.com/Downloads/WhitePapers/Top10SQLPerf.pdf
The SQL service account must be granted the "Lock pages in memory" user right.
Regards
IgorMi
April 15, 2013 at 1:05 pm
SQL ORACLE (4/3/2013)
If you run the same query...
April 3, 2013 at 9:30 am
So it seems that according to table on http://msdn.microsoft.com/en-us/library/ms175088(v=sql.105).aspx the default settings does not matter because it all depends on the ODBC connection settings which overwrite most of the settings.
April 3, 2013 at 9:28 am
SQL ORACLE (4/3/2013)
The execution plan is saved within the cashe allocated to SQL Server instance. It is not related to the other setting outside SQL Server.
The ANSI...
April 3, 2013 at 8:51 am
Viewing 15 posts - 961 through 975 (of 1,170 total)