Viewing 15 posts - 196 through 210 (of 7,168 total)
Here is the framework for a solution but I need some of the information I requested to be sure it meets all the business requirements:
if OBJECT_ID('tempdb.dbo.#hours') is not null
...
February 18, 2016 at 6:57 pm
Gstar1224 (2/18/2016)
I have been trying to build a query that would calculate the number of concurrent users every hour for a date range(Lets say a month). Below is...
February 18, 2016 at 6:51 pm
Loner (2/18/2016)
The table has 2357880092 number of records.
Thanks. Please provide a CREATE TABLE statement including all indexes and constraints.
February 18, 2016 at 4:10 pm
Log Shipping is tried and true, no doubt, but data center operations folks mostly (in my experience) think about 0 data loss from a DR perspective and therefore favor mirroring...
February 18, 2016 at 6:58 am
Seems you've ruled out a database problem. Maybe contact the Power Builder folks or post your question on a Power Builder forum.
February 18, 2016 at 5:55 am
bh.shalini (2/18/2016)
My problem is slightly different. From the database i get the Korean characters as is.
Earlier you said you were not, from the new database via the OLE DB Driver....
February 18, 2016 at 3:20 am
Is the table partitioned?
February 17, 2016 at 7:21 pm
Seems like you isolated it to a driver issue. If memory serves, the OLE DB driver in SNAC actually leverages the ODBC driver behind the scenes so the problem may...
February 17, 2016 at 7:44 am
ChrisM@Work (2/16/2016)
Orlando Colamatteo (2/15/2016)
February 16, 2016 at 1:43 pm
Lynn Pettis (2/16/2016)
Orlando Colamatteo (2/16/2016)
select datefromparts(year(getdate())-1,1,1) as beginning_of_last_year,
datefromparts(year(getdate())-1,12,31) as end_of_last_year;
I don't like using closed ended ranges for date ranges. Prefer close ended on the...
February 16, 2016 at 1:38 pm
TheSQLGuru (2/16/2016)
sp_job_start is the sproc IIRC. You could...
February 16, 2016 at 11:05 am
Thanks for clarifying. My understanding is that processes running as "local system" may have trouble accessing network resources.
You've proven it works when the services are running as your account. Not...
February 16, 2016 at 6:57 am
Maybe semantics, but wasn't thinking of anything to incorporate in your existing code. I was proposing new code and a new step 2 in your job.
Suggestion: make a new...
February 16, 2016 at 6:21 am
Please read the article I linked to. While a scan of the data is inevitable with like%% the technique in the article still improves performance even with 0% nulls.
February 16, 2016 at 2:21 am
How about this:
Job starts at 20:15:
Step 1: take backup
Step 2: T-SQL, if before 21:00 run WAITFOR TIME '21:00'; else just be done
Step 3: do important stuff
February 16, 2016 at 2:18 am
Viewing 15 posts - 196 through 210 (of 7,168 total)