Viewing 15 posts - 4,576 through 4,590 (of 8,761 total)
SQLPain (9/11/2015)
Msg 195, Level 15, State 10, Line 3
'ROW_NUMBER' is not a recognized function name.
Msg 156,...
September 12, 2015 at 2:13 am
tt-615680 (9/12/2015)
I have a database which gets refreshed on the daily by restoring 1 transactional file log, at the moment it is done manually but I'm trying to create...
September 12, 2015 at 2:09 am
Alan.B (9/11/2015)
September 12, 2015 at 2:00 am
Further on the topic, the input tree is generated during the parsing and binding phase. Since the query processor does not evaluate variable values during this stage, this step produces...
September 12, 2015 at 1:55 am
Alvin Ramard (9/11/2015)
Eirikur Eiriksson (9/11/2015)
Alvin Ramard (9/11/2015)
Anyone use dbForge Studio to generate diagrams?
Did try it briefly few years back, not bad but it didn't end up in the tool...
September 11, 2015 at 11:45 am
Alvin Ramard (9/11/2015)
Anyone use dbForge Studio to generate diagrams?
Did try it briefly few years back, not bad but it didn't end up in the tool chest, main reason being...
September 11, 2015 at 10:02 am
Luis Cazares (9/11/2015)
ZZartin (9/11/2015)
PizzaAlways
pronto
September 11, 2015 at 9:41 am
Mike Sofen-356112 (9/11/2015)
Eirikur Eiriksson (9/11/2015)
September 11, 2015 at 9:26 am
anthony.green (9/11/2015)
whereisSQL? (9/10/2015)
Ed Wagner (9/10/2015)
DonlSimpson (9/10/2015)
Ed Wagner (9/10/2015)
djj (9/10/2015)
Ed Wagner (9/10/2015)
whereisSQL? (9/10/2015)
Luis Cazares (9/10/2015)
UniverseHe-Man
Conan
Sword
Katana
Samurai
Shogun
Shaolin
Monastery
Hermetic
September 11, 2015 at 5:05 am
Newbie36037 (9/11/2015)
With a bit of tweaking I got it to workMany Thanks
You are very welcome.
😎
September 11, 2015 at 4:42 am
akash_singh (9/11/2015)
Here is the execution plan for your reference.
The image posted does not help much, the only thing one can suggest from this is to add covering indexes to the...
September 11, 2015 at 3:38 am
Quick question, can you post the DDL (create table), sample data as an insert statement and the desired output?
😎
September 11, 2015 at 1:57 am
My 2 Cents, when working with large and often complex schema, cluttering a detail level ERD into a single diagram does neither make sense nor serve any purpose (apart from...
September 11, 2015 at 1:35 am
September 11, 2015 at 1:26 am
Quick example
😎
USE tempdb;
GO
SET NOCOUNT ON;
/* XML snip to update, note added a ROOT element */
DECLARE @TXML XML = '<ROOT>
<Name>Assets - Reconciler</Name>
<UpdatedOn>2015-05-20T13:23:09.230</UpdatedOn>
<CreatedOn>2015-05-20T13:22:04.920</CreatedOn>
<UpdatedBy>RLG\JoeBloggs</UpdatedBy>
<CreatedBy>RLG\JoeBloggs</CreatedBy>
<InputDirectory>\\99.999.999.9\Active</InputDirectory>
<OutputDirectory>\\99.999.999.9\Archive</OutputDirectory>
<ErrorDirectory>\\99.999.999.9\Errors</ErrorDirectory>
<LoadId>0</LoadId>
<Type>ExcelFile</Type>
</ROOT>';
DECLARE @NEW_IP VARCHAR(15) = '123.456.789.012';
DECLARE @SAMPLE_TABLE TABLE
(
...
September 11, 2015 at 1:24 am
Viewing 15 posts - 4,576 through 4,590 (of 8,761 total)