Viewing 15 posts - 1 through 15 (of 30 total)
We have been using virtual SQL Servers for testing for some time and even have one (smallish) live database on a VM. We've had no problems. We are getting...
March 24, 2016 at 7:28 am
I'm not sure what you mean by creating the environment, but what you are looking for in SQL 2012 is SSIS not DTS.
October 27, 2015 at 7:13 am
You will need to have a date field if you are going to query by date. Well, do it easily anyway. You could write a query to pull...
December 11, 2014 at 8:32 am
If you can't get the powers-that-be to agree to buy a SQL Server license and server you might want to try to put in SQL Express (it's free). I...
October 15, 2014 at 4:02 pm
It sounds like you might have missed or incorrectly set a setting on the Advanced screen of the New Job Step. There are two fields, what to do on...
October 14, 2014 at 3:36 pm
As long as production users aren't being affected I don't see a problem with it and I think the only limit is your hardware.
September 23, 2014 at 7:59 am
You're fine, the update you applied was cumulative.
August 13, 2014 at 8:31 am
This will give you table name and rows:
SELECT sysobjects.name
, sysindexes.Rows
FROM
sysobjects
INNER JOIN sysindexes
ON sysobjects.id...
July 9, 2014 at 9:15 am
Is objects a user table or do you mean sys.objects (which you don't want to 'update')? Where are you getting the values for object number? What is...
May 27, 2014 at 3:04 pm
Sorry, I don't have much time today to help, but there's one thing... have you looked at the records that were successful and compared them to the ones that were...
January 17, 2014 at 3:27 pm
When you are running the import and you get to the 'Select source tables and views' screen have you tried to edit the mappings to match your existing table?
You could...
January 16, 2014 at 8:58 am
Got me there. I should have said who among my US East Coast friends who constantly give me grief about the rain here can laugh now.
BTW I do hope...
January 3, 2014 at 4:22 pm
47 degrees and sunny here in the Pacific Northwest. Now who's laughing!
January 3, 2014 at 3:25 pm
Viewing 15 posts - 1 through 15 (of 30 total)