Viewing 15 posts - 2,206 through 2,220 (of 2,645 total)
September 5, 2018 at 12:43 pm
September 5, 2018 at 11:24 am
September 5, 2018 at 11:13 am
I tried this but again...
September 5, 2018 at 10:22 am
select TOP 10 from DateExpensed where * from dbo.Table_1 order by DateExpensed...
September 5, 2018 at 10:12 am
September 5, 2018 at 9:56 am
0.18 minutes =...
September 5, 2018 at 8:18 am
We move data from our OLTP to our report server for aggregations and reports....
September 4, 2018 at 3:41 pm
I had a Dimension table that had over 520 columns.
The updates to the table almost ground the system to a halt due to the high number of page...
September 4, 2018 at 12:20 pm
September 4, 2018 at 12:10 pm
There is the undocumented (by Microsoft) command sp_MSforeachdb
You can also create a server group. If you run a query from a server group it will run...
September 4, 2018 at 3:54 am
There is a free SQL formatting tool from Apex, probably not as good as Redgate's, but you can configure the formatting quite extensivley.
https://www.apexsql.com/sql_tools_refactor.aspx
September 4, 2018 at 3:46 am
Declare
@campus_cd nvarchar(300),
@cmpy_code nvarchar(500),
@year1 int,
@year2 int,
@period int,
@period2 int,
@batch_Id uniqueidentifier
BEGIN TRY
BEGIN TRANSACTION;
/*year1*/
insert into...
September 3, 2018 at 8:47 am
Viewing 15 posts - 2,206 through 2,220 (of 2,645 total)