Viewing 15 posts - 1,741 through 1,755 (of 2,463 total)
CREATE FUNCTION [dbo].[uf_utl_SplitNString]
(
@InStr nvarchar(4000) = null ,
@token nvarchar(4000) = ','
)
RETURNS @RtnElement TABLE ( item nvarchar(4000))
AS
BEGIN
declare @rec_no int
declare @pos int, @tokenlen int
declare...
May 4, 2010 at 8:27 am
/************************************************************************
*
* Author: Rafal Skotak
* Purpose: Procedure displays amount of disk space used by databases per directories
* Date: 2008-01-14
*
************************************************************************/
if exists(select * from sysobjects where id = object_id('dbo.proc_get_db_files_size') and xtype = 'P')
drop...
May 4, 2010 at 8:22 am
finally i got fix for this problem instead oif having concatenated email id , i replaced it with group ( active directory email group ) which contains all email...
May 4, 2010 at 8:13 am
tosscrosby (5/4/2010)
Bhuvnesh (5/4/2010)
Brandie Tarvin (5/4/2010)
Bhuvnesh (5/3/2010)
I dont understand why we have very few girls in database field ? , i think ROLLBACK doesnt work for them 😀
There's...
May 4, 2010 at 8:07 am
Paul White NZ (5/4/2010)[hrHave you considered using a SELECT...INTO statement to create the table at the same time as loading? This can be minimally logged too, and is generally...
May 4, 2010 at 8:00 am
Brandie Tarvin (5/4/2010)
Bhuvnesh (5/3/2010)
I dont understand why we have very few girls in database field ? , i think ROLLBACK doesnt work for them 😀
There's a joke here I...
May 4, 2010 at 6:34 am
Santosh Bandhu (5/4/2010)
May 4, 2010 at 6:27 am
Gianluca Sartori (5/4/2010)
PARTITION BY is used in windowed aggregates.
can you give any example ?
May 4, 2010 at 6:24 am
Drammy (5/4/2010)
During execution I saw the tempDB grow from the default 8MB to over 5GB.
now i am curious to see execution plan
May 4, 2010 at 5:33 am
deepthi818 (5/4/2010)
Thanks for replying..
still you need any help , you are welcome:-)
May 4, 2010 at 5:30 am
NewBeeSQL (5/4/2010)
overlapping indexes are the indexes which overlapped over the columns...for example..if i have 3 indexes..
index 1 is on Table1 on col1,col2,col3
index 2 is on Table1 on col1,col2
index 3...
May 4, 2010 at 5:28 am
Drammy (5/4/2010)
My issue with posting the execution plan is it exposes all the values I have had to obfuscate in the statement.
ok thats fine , find out the culprit...
May 4, 2010 at 4:43 am
NewBeeSQL (5/4/2010)
I was given a task to find out overlapping indexes and disable from my db....can any one show me the path on how to find overlapping indexes??
what do...
May 4, 2010 at 4:38 am
Drammy (5/4/2010)
I have run this through the SQL Database Engine Tuning Advisor on a few different sample databases now and have built the...
May 4, 2010 at 4:16 am
Drammy (5/4/2010)
There is no indexing on the target table, the table gets created just before its population.
and what about the source tables (included in left joins ) ?
May 4, 2010 at 3:54 am
Viewing 15 posts - 1,741 through 1,755 (of 2,463 total)