Viewing 15 posts - 751 through 765 (of 13,445 total)
I think it's a column descriptor in master.sys.procedures;
I've confirmed that my proc, which sets specific trace flags, shows up in my results:
sp_set_traceflags --this is mine!
sp_ssis_startup
sp_MSrepl_startup
SELECT *
FROM master.sys.procedures
WHERE [procedures].[is_auto_executed]...
December 13, 2016 at 9:28 am
i believe it's suffering from the classic error: recovery mode is FULL recovery, someone took at least one full backup, and no one has ever run a log backup, nor...
December 12, 2016 at 12:02 pm
pretty sure standard edition featureing multiple Basic Availability Group is supported, and if you have multiple databases, that kind of forces you into having to design one db per group.
...
December 9, 2016 at 1:56 pm
I got my SQL2012/2014 MCSA in May 2016, which was probably a month before SQL2016 RTM came out.
The official books for the three new SQL 2016 MCSA come...
December 8, 2016 at 11:19 am
row_number featuring partition by will do what you are asking;
here's an old example, but you can see you get all the other values but it's logically grouped by the...
December 8, 2016 at 11:13 am
jbalbo (12/8/2016)
I am using a Bulk insert via a txt file and...
December 8, 2016 at 11:05 am
yes, but you need a case statement to bulletproof the calculation for data shorter than your assumption.
CREATE TABLE EXAMPLE (
ExampleId int IDENTITY(1,1) NOT NULL PRIMARY KEY,
MyColumn varchar(30)
)
INSERT INTO EXAMPLE(MyColumn)
VALUES( ''),('1234567890')
ALTER...
December 8, 2016 at 10:34 am
komal145 (12/8/2016)
I have a package , where i get the results from a storedprocedure and send it to a file.
meaning OLED source ( sql command) ---> Flatfile.
Pacakge runs...
December 8, 2016 at 10:00 am
wow, I've heard of petty turf wars like this happening.
You've got to bring it all out in the open, with your DCD and all related supervisors; this is not the...
December 8, 2016 at 6:17 am
CELKO (12/6/2016)
CREATE TABLE Forest
(node_name VARCHAR(20) NOT NULL PRIMARY KEY,
lft INTEGER NOT NULL CHECK (lft > 0),
rgt INTEGER NOT NULL CHECK (rgt > 1),
CHECK(lft < rgt));
INSERT INTO Forest
VALUES
('Root',1,8),
('first child...
December 6, 2016 at 5:30 pm
there is another parameter, @query_result_width, which i think is a default of 80 or 100, and anything wider wraps, which is what you are seeing
set it to a large number,...
December 6, 2016 at 5:21 pm
just read and work through your errors; you seem to be changing stuff pretty quick to try and get it to work.
your latest error is just because you checked the...
December 6, 2016 at 10:08 am
the error message you pasted was
The server response was: 4.3.2 Service not available,
which would be an SMTP service exists, but is not available.
so the issue is not database mail, but...
December 6, 2016 at 9:25 am
the obvious fix is to set up a specific account for the SSRS account that does not password expire.
on my SSRS instances, all reports use shared data sources, so...
December 6, 2016 at 6:45 am
yes it could potentially cause problems. best practice would be to go ahead and schema-qualify all the scripts provided to avoid any issues.
The scenario i would worry about is if...
December 6, 2016 at 6:34 am
Viewing 15 posts - 751 through 765 (of 13,445 total)