Viewing 15 posts - 2,461 through 2,475 (of 13,469 total)
thank's guys; that's the path i'm going down now...multiple for loops.; i'd do it differently in c# or vb.net,
SSIS for me is a middle layer of complexity inserted...
March 7, 2014 at 11:59 am
Thanks for looking Koen!
what i mean, is, say you have a folder of files, some file names contain "_Product_" in their names, others contain "_Patient_" or "_Sections_" in their names.
there's...
March 7, 2014 at 6:37 am
don't try to do it in the table. create a view or query that uses row_number() OVER (Partition by...order by..)
if you try and do it in the table itself, you...
March 6, 2014 at 4:54 pm
well I'd say go with rebuilding all your statistics as well first,a dn then start looking at specific slow performing queries,a dn whether you can either get indexes in place...
March 6, 2014 at 2:44 pm
well, i'll throw my two cents in, and you can evaluate them for yourself
i can only tell you my experiences and the way we do things at my shop; you...
March 6, 2014 at 12:56 pm
If you need the schema and the data, the "number 1 doctor recommended " way todo that is via backup and restore;
it's flawless, and is either pass or fail; you...
March 5, 2014 at 2:04 pm
it depends on whether the developers are allowed to do DDL changes, and how often those changes need to be re-applied when you refresh.
with regular restores, the develoepr changes get...
March 5, 2014 at 10:16 am
in a similar post a couple of years ago, i did a TSQL example that looked at the first x bytes and compared them to known values to find gif/jpg/bmp/png...
March 4, 2014 at 2:11 pm
i don't think you really need the database at all.
I'd create a job script for the client, nad ask the client to add a job or two , that runs...
March 4, 2014 at 1:59 pm
quackhandle1975 (3/4/2014)
I am looking to perform some DBCC CHECKDB tests and for many reasons, I cannot copy a use a copy of current prod database, but the best I can...
March 4, 2014 at 11:29 am
is it possible tha that the file being read is still being written by some other process , and you are accidentally grabbing it mid-stream? i know i had an...
March 4, 2014 at 5:48 am
also, if your table variable has more than a few hundred rows, switching it to a temp table allows SQL to use automatically created statistics on that table in order...
March 3, 2014 at 11:28 am
i believe it's bad syntax, which can result in an accidental cross join.
you are updating a table variable, but it is ALIASED elsewhere; because it is not explicitly named, there's...
March 3, 2014 at 11:24 am
there's a session-level value named CONTEXT_INFO you could set, but you would have to modify your application to set it and use it;
here's an example or two:
DECLARE @var VARBINARY(128)
SET @var...
March 3, 2014 at 8:13 am
TSQL pretty much limits you to looking inside databases. For anything outside of a database , in your case FTP and files, i think i'd create an outside process to...
March 3, 2014 at 6:39 am
Viewing 15 posts - 2,461 through 2,475 (of 13,469 total)