Viewing 15 posts - 9,271 through 9,285 (of 13,469 total)
good question actually.
at some point, the connection to the database that is going to be upgraded has to be input...
Like me, I'm sure you've noticed that you've never seen an...
June 10, 2010 at 7:40 pm
if the stored proc is doing ALTER TABLE and then anything else, i think you have to switch to dynamic sql for the ALTER commands.....that fixes the GO statement, since...
June 10, 2010 at 2:30 pm
sunny.tjk (6/10/2010)
Fantastic Lowell....but I'm not sure what this "ON ALL SERVER FOR LOGON" does.
ahh, that's our point...if you don't have a handle on LOGON triggers, read up on them,...
June 10, 2010 at 1:44 pm
here's a proc i have laying around for that situation with dyn named FK's: drops all the FK's on a specific column in a table
usage is simply EXEC DROP_FK_FROM_SPECIFIC_COLUMN TableName,ColumnName
if...
June 10, 2010 at 1:38 pm
could it be possible that ANOTHER foreign key, a duplicate the specific FK you are looking for, but with a different, dyamically create name exists?
it's possible, unfortunately, to have duplicate...
June 10, 2010 at 1:31 pm
yes you can, but you have to use a logon trigger to do it.
I'm sure there's more to it than the # of connections that you need to figure out...
June 10, 2010 at 12:59 pm
yes you can change compatibility mode without a problem;
compatibility mode only tells SQL to filter the commands coming in against a set of version-specific-syntax; it does not change how the...
June 10, 2010 at 12:45 pm
if the windows user has been explicitly assigned a login withthe server roles sysusers,
or belongs to a windows gorup that has been assigned sysadmin rights (like BuiltIn\Administrators),
then that user...
June 10, 2010 at 12:34 pm
yes it is; as a matter of fact, here's something at codeproject that has a screenshot-by-screenshot, step by step example:
http://www.codeproject.com/KB/database/MergeReplication.aspx
June 10, 2010 at 11:13 am
another option would be Merge Replication, now that i'm thinking about it;
changes would get shipped out on a regular basis, and once set up, you do not have to fiddle...
June 10, 2010 at 10:57 am
i think something like this would be better: it's set based, so it's fast, and if the data doesn't start with the offending char, it's not adversly affected:
--remove preceeding semi...
June 10, 2010 at 9:38 am
John Waclawski (6/10/2010)
June 10, 2010 at 9:31 am
'Imports System.IO
Private Sub btnSQLSplitter_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSQLSplitter.Click
Dim myConnectionString As String = "data source={0};user id={1};password={2};initial catalog={3};Trusted_Connection=False;Application Name=SSCExample.YouApplicationName.exe;"
myConnectionString...
June 10, 2010 at 6:11 am
n00b (6/10/2010)
June 10, 2010 at 5:42 am
indupriya9 (6/9/2010)
June 9, 2010 at 5:28 pm
Viewing 15 posts - 9,271 through 9,285 (of 13,469 total)