Viewing 15 posts - 976 through 990 (of 13,445 total)
here's how i started tackling it: strip everything out, and then format depending on 10 or 11 digit lengths.
I think i'd remove letters and replace with their corresponding numbers...
I'm ignoring...
May 20, 2016 at 1:17 pm
you are probably using notepad to save your file?
you have to change the file type in the save as dialog.
Change it to all files and enter the extension...
May 20, 2016 at 9:01 am
why can't you rename the databases?
exec sp_renamedb 'Account ','AccountOrig'
exec sp_renamedb 'Account_Compact ','Account'
May 20, 2016 at 8:39 am
here's an example that i just slapped together that does the first nine columns. using DelimitedSplit8K and the PIVOT operator.
does this help?
/*
--Results
Diagnoses_For_Spell ...
May 20, 2016 at 5:56 am
I still think a specific set of volunteers here should be given a whack-a-mole functionality, which has been suggested ad-nauseam, but I think it's hard for red-gate to dedicate a...
May 19, 2016 at 1:24 pm
template functionality in the paid SSMS plugin ssmstoolspack.com does that.(~40 bucks as I remember)
it also is parameterized for variables.
for example, my template looks like this:
-- Created By: |CurrentWinUserName|
-- Create Date:...
May 19, 2016 at 1:16 pm
dudekula.kareemulla (5/19/2016)
Problem is i do not want create same user in another database in...
May 19, 2016 at 7:08 am
i think synonyms don't magically solve cross database chaining.
if User [Bob] has access to [db1], but a synonym in there points to [db2], you need to add [bob] to...
May 19, 2016 at 6:17 am
I like the direction Joie Andrews was going;
look at the job history, andn see how long it takes.(the duration column)
if you set it for every 15 minutes, but it takes...
May 19, 2016 at 6:13 am
kruezer had it right; without data and substantially more information, it's just a guess.
if i said 700 gig is required, and kruezer said 80 gig , who has the better...
May 19, 2016 at 6:05 am
SQL-DBA-01 (5/18/2016)
if servers are connected via "registered server" list, does it mean that a session will away be active using my account?
Nope, John Mitchell is right; Registered Servers or Central...
May 19, 2016 at 6:00 am
forget about hiding the linked server...just make sure only specific users are mapped to use credentials that are valid on the linked server, so everyone ELSE is "not be made",
the...
May 19, 2016 at 5:51 am
becuase you want the total inline with details, you need your same data twice...once grouped by TransacitonId, and the original data.
here's your data as an example: the CTE at the...
May 18, 2016 at 1:37 pm
since you compiled to an executable, you need to process the command line arguments in the c# app; did you configure it to do that yet?
what i'm thinking is that...
May 18, 2016 at 1:20 pm
celia.moreno (5/18/2016)
Indexes are not an option, because these 700K transaction are about 600K inserts and 100K deletes.It is on our own server.
you should still review the indexes.
a classic...
May 18, 2016 at 8:39 am
Viewing 15 posts - 976 through 990 (of 13,445 total)