Viewing 15 posts - 2,146 through 2,160 (of 6,679 total)
WHERE LEFT(AKey, 3) IN ('AAA', 'BBB', 'CCC', 'DDD', 'EEE', 'GGG', 'JJJ') AND LEN(AKey) = 9
October 9, 2019 at 8:11 pm
This is a display/report issue - it can and should be done in the report and not in SQL Server. Your example does not include all of the data elements...
October 6, 2019 at 4:24 pm
so - hold on - are you guys saying that I should put every Saturday and sunday into my holidays table? that kinda makes sense.....
all I have to do...
October 5, 2019 at 4:02 pm
so - hold on - are you guys saying that I should put every Saturday and sunday into my holidays table? that kinda makes sense.....
all I have to do...
October 5, 2019 at 4:01 pm
so - hold on - are you guys saying that I should put every Saturday and sunday into my holidays table? that kinda makes sense.....
all I have to do...
October 5, 2019 at 3:58 pm
Please note: there are 2 check boxes on that page:
Limit size of job history log - if this is checked, SQL Server will automatically manage the size of the job...
October 5, 2019 at 3:47 pm
Did you stop the transaction log backups on the primary for those 2 databases? If not - most likely one or more transaction log backups have occurred since you started...
October 5, 2019 at 3:37 pm
You should be able to place the file(s) in the ..\Data folder under the instance in C:\Program Files\. If you cannot put the files in that location then you need...
October 5, 2019 at 2:49 pm
Script the statement and execute it from a query window instead of the GUI. This will avoid the timeout error - but I am guessing based on your other question...
October 5, 2019 at 2:45 pm
This should get you started
Declare @database sysname = '{your database}';
Declare @backup_set_id_start int
, @backup_last_lsn numeric(25,0);
--==== Get Backup Set for this... October 5, 2019 at 2:38 pm
If the vendor wants to see a full sample rate - you can set the NO_RECOMPUTE flag on those stats so they will not be auto updated. If you do...
October 5, 2019 at 2:20 pm
A few years ago, I did a similar upgrade (2008 R2 to 2014 parallel upgrade). One thing you will want to watch out for:
Queries that use table valued functions...
October 2, 2019 at 6:14 pm
I hadn't read the information about the source table being on another database. A good way to go is to first copy the data onto a Staging table on...
September 29, 2019 at 3:31 pm
Thanks Jeffrey. One question: why even have step 2 ? Cant you just have the stored procedure get data from original source ? If a network error occurs, a...
September 28, 2019 at 4:27 pm
Viewing 15 posts - 2,146 through 2,160 (of 6,679 total)