Viewing 15 posts - 811 through 825 (of 13,445 total)
But thats easily fixed with smart code
If exists... and @@SERVERNAME='Production' And db_name='ProdDB'
So i would argue it all belongs in a single procedure.
October 26, 2016 at 5:43 pm
like Sue_H, i would have the procedure send the email. if you are reusing the procedure elsewhere, add an optiona parameter with a default, like @sendEmailNotification int=0
it looks like...
October 25, 2016 at 6:18 pm
Texas A&M University offers A bulk cleansing service you could try.
you upload a txt or csv and get back results;
you have to register/create an account, but I believe it's free.
October 25, 2016 at 1:55 pm
i just recently did the opposite of what the OP is looking to do: i expanded all abbreviations to full words;
mine was an investigation to eliminate variations in abbreviations and...
October 21, 2016 at 2:59 pm
Jeff Moden (10/18/2016)
October 19, 2016 at 4:58 am
Is it truely an archive database, so you can just toggle it to read only mode, or is it somewhere in between?
You could add a file group, and move...
October 18, 2016 at 4:24 am
chocthree (10/16/2016)
A newbie here wishing to ask for advice on Microsoft Business Intelligence. Hoping this is the right forum to put my questions.
I would like to learn Business Intelligence...
October 16, 2016 at 8:13 am
ismahmoud (10/13/2016)
select * into LinkedServer.[DB_Name].[dbo].[Table_Name] FROM Server2.[DB2_Name].[dbo].Table2_Name
but give this error:
Msg 117, Level 15, State 1, Line 1
The object name 'LinkerserverName.DB_Name.dbo.Table_Name' contains more than the maximum number...
October 13, 2016 at 4:48 am
mcfarlandparkway (10/10/2016)
In the main table I have added a column called fullamount. Basically this fullamount column is coming...
October 10, 2016 at 4:07 pm
ok bulk has to references files ON THE SERVER or a fully qualified UNC path
so unless the SQL server is on your local machine, you need to move the...
October 10, 2016 at 11:07 am
andrew gothard (10/10/2016)
My guess would be the SQL Server service account not having access to that location. Can't see the location / file => file doesn't exist
Agreed. C:\Users\username\{anything} is...
October 10, 2016 at 9:37 am
all those packages are actually stored in an[image] data type in the [msdb].[dbo].[sysssispackages] table.
you could preview them or manually convert them to xml stringsand save them to disk.
select convert(nvarchar(max),convert(varbinary(max),packagedata)) from...
October 8, 2016 at 8:57 am
your Columns table would need the column name, data type+ size and probably whether it's null/not null;
defaults and foreign keys, even when coming from our definitions table would be...
October 8, 2016 at 6:40 am
rperetz (10/5/2016)
This does not work for Gmail.
Gmail, like many other client applications, have an option to prevent images from showing unless the sender is trusted. I had to do that...
October 5, 2016 at 5:47 pm
based on experience, you won't find a one-function-to-rule-them-all address cleanup. break it up into smaller pieces that complement each other.
there's too many exceptions to the patterns;
what I've done previously is...
October 5, 2016 at 6:24 am
Viewing 15 posts - 811 through 825 (of 13,445 total)