Viewing 15 posts - 361 through 375 (of 1,158 total)
I use SQL projects and a single solution. I then load them all into source control.
July 6, 2012 at 5:13 am
erics44 (7/4/2012)
I'm not sure i agree with your reasoningI can use the parameters the same in a LINQ queries as variables in my code
Not really true. You will not...
July 5, 2012 at 2:29 am
Worth noting that, I'm assuming there are no changes going on in the data at the time of migration. Else you will need to do some data validation/comparisons etc.
July 4, 2012 at 12:39 am
sqlsponge2 (7/3/2012)
4.) Apply scripts created in step #1 without making any changes
That's likely the key.
By default, generate scripts will create a script for subscriptions as they were initially setup...
July 4, 2012 at 12:29 am
I perform regular migrations like this without issue.
How did you script the publication did you make any modifications?
Are they push/pull subscribers?
Did you drop replication prior to backing up/restoring?...
July 3, 2012 at 8:21 am
Jigneshal (7/2/2012)
Its an Uni project..
Good guess on my part since its extremely unlikely that it'd be a professional question like that.
Assuming you already know the basics of database design from...
July 2, 2012 at 2:31 am
Jigneshal (7/2/2012)
I want to create a database for hospital management system.
but i dont have much idea to design db. Can anyone help creating db for hospital management.
It will be a...
July 2, 2012 at 1:32 am
User information is not logged in the database transaction log.
You will need to create an audit process and/or add a column to the tables to store the last modified user.
June 19, 2012 at 2:56 am
gary.morey (6/15/2012)
All of the other users can only do SELECTs against the table....so this means that I...
June 15, 2012 at 1:55 pm
dj1202 (6/15/2012)
Hello all,There are duplicate dates (each correspond with a unique invoice number).
You've answered your own question right here. Date, Invoice Number
Although, a date dimension doesn't normally include...
June 15, 2012 at 1:54 pm
gary.morey (6/15/2012)
If I can't drop it in this case,...
June 15, 2012 at 1:42 pm
You will want to find out exactly the procedure they took and what occurred. If its been renamed as they've changed the domain then security is likely the...
June 15, 2012 at 10:00 am
I'm guessing you want to add the feature to the already existing instance.
Even if it didn't require a service restart I wouldn't risk it. Arrange to do it during...
June 11, 2012 at 11:05 am
select sa.name, CASE sa.pre_creation_cmd WHEN 0 THEN 'None'
WHEN 1 THEN 'Drop'
WHEN 2 THEN 'Delete'
WHEN 3 THEN 'Truncate'
END
from sysarticles sa with(nolock) where sa.name = 'Table'
See this article.
June 11, 2012 at 10:48 am
Filtering is simple in replication using a where clause.
You can only use dynamic filtering in merge replication. For example
servername = hostname()
June 11, 2012 at 9:52 am
Viewing 15 posts - 361 through 375 (of 1,158 total)