Viewing 15 posts - 8,026 through 8,040 (of 8,760 total)
Sathvik (6/12/2014)
Recently we have migrated sql server 2008R2 server to 2012, But after migration one of the stored procedure is taking 2mins execute in 2012 server. It took...
June 12, 2014 at 1:26 pm
Quick thought, wouldn't it be simpler to have an SSIS package for shuffling the backup files around, no need for XP_CMDSHELL etc.
π
June 12, 2014 at 10:36 am
Throwing in an other 2c, it is much worse when duties and responsibilities fall between the different groups than occasional clashes or issues. And it definitely isn't about who's [put...
June 12, 2014 at 10:18 am
Eric M Russell (6/12/2014)
June 12, 2014 at 10:12 am
Have a look at this article
Tally OH! An Improved SQL 8K βCSV Splitterβ Function By Jeff Moden[/url]
π
June 12, 2014 at 6:44 am
liudi (6/11/2014)
Recently I got a 1.3TB table, has 2.7billion rows and 25 columns running on MSSQL. When trying to...
June 12, 2014 at 2:00 am
itsgaurav (6/11/2014)
Create Nonclustered Index In_product_pdid
ON Product(pd_id)
INCLUDE pd_desp; <- Include product description column with Index
GO
My Question is in 60% query i need pd_desp...
June 12, 2014 at 12:59 am
Thanks Jim, a worthy subject, although somewhat simplified. Often it tends to be not only two sides but four or five, including database developers, business analysts and solution-, database- and...
June 12, 2014 at 12:47 am
It is safer to use the IDENT_CURRENT function as it "returns the last identity value generated for a specific table in any session and any scope."
π
June 12, 2014 at 12:33 am
June 11, 2014 at 8:45 pm
J Livingston SQL (6/11/2014)
In a similar vein .....what's the current UK market like?
As for the UK market goes, the demand is there but the remuneration isn't brilliant, especially in the...
June 11, 2014 at 8:38 pm
Sean Lange (6/11/2014)
Eirikur Eiriksson (6/11/2014)
Grin aside, the last comment is uncalled for, it will not earn you any respect.
I don't think Joe is all that worried about earning respect. Might...
June 11, 2014 at 2:37 pm
CELKO (6/11/2014)
The proprietary, non-relational IDENTITY is a table property and not a column (but...
June 11, 2014 at 1:42 pm
Here is a solution entirely based on SQL 2012 window functions, I left it a little long winded to make it easier to follow.
π
USE tempdb;
GO
IF OBJECT_ID('tempdb.dbo.sales') IS NOT NULL...
June 11, 2014 at 10:48 am
Viewing 15 posts - 8,026 through 8,040 (of 8,760 total)