Viewing 15 posts - 1,516 through 1,530 (of 13,460 total)
i just built this example from my notes about adding align in xml.
this quick example seems to generate valid xml/html snippets, using inline styles.
i would do as suggested and use...
Lowell
September 3, 2015 at 6:33 am
this is working for me:
Import-Module ActiveDirectory
Get-ADGroup -Filter {Name -like '*SQL*'} -Properties * | select -property SamAccountName,Name,Description,DistinguishedName,CanonicalName,GroupCategory,GroupScope,whenCreated
Lowell
September 1, 2015 at 1:26 pm
i just checked the wayback machine over at archive.org, which only had part two of the three part series,a nd pointed to SQL Saturday #234, since it was a presentation...
Lowell
September 1, 2015 at 5:38 am
SQLBill (8/31/2015)
Trick question isn't it?UNIQUE constraint: used to "...make sure that no duplicate values are entered..." So you can't have duplicates.
-SQLBill
no, it's a classic question on the...
Lowell
August 31, 2015 at 3:41 pm
this looks right to me, and is sytactically correct, but you didn't mentione what the new value was.
i would use the ansi 92 syntax to make it clear to my...
Lowell
August 31, 2015 at 3:27 pm
NineIron (8/31/2015)
How can I change my T-SQL text editor from text sensitive to text insensitive?
assuming your text editor is SQL Server Management Studio, SSMS itself is not case sensitive; however,...
Lowell
August 31, 2015 at 10:48 am
have your dba create a procedure that features EXECUTE AS OWNER that adds missing permissions.
have the procedure loop through each database on the dev server, and do a classic if...
Lowell
August 31, 2015 at 6:24 am
bumping this for the morning, hopefully someone may remember what counts as a transaction per second.
Lowell
August 31, 2015 at 5:49 am
you altered the table and added a new column [date1]
the table [Metrics].[dbo].[x64_Restore_Metrics_All_Temp] now has four columns, but your insert has only three.
if you do insert into table without a column...
Lowell
August 28, 2015 at 1:03 pm
i think it's just a select of three queries, which inserts into the new table.
INSERT INTO NEWTABLE(ColumnList)
SELECT RecordID,ManagerID,ManagerApprovedDate,'ManagerApproved'
From OriginalTable WHERE ManagerID IS NOT NULL UNION ALL
SELECT RecordID,ClerkID ,ClerkApprovedDate,'ClerkApproved' ...
Lowell
August 28, 2015 at 12:10 pm
i built this proc from some examples i found here on SQLServerCentral:
IF OBJECT_ID('[dbo].[sp_dbspaceused]') IS NOT NULL
DROP PROCEDURE [dbo].[sp_dbspaceused]
GO
--#################################################################################################
--developer utility function added by Lowell, used in SQL Server...
Lowell
August 28, 2015 at 9:49 am
mar.ko (8/28/2015)
Ed Wagner (8/28/2015)
Lowell
August 28, 2015 at 9:36 am
looks to me like the issue is in the complicated select that you left out of the post...
you not getting the data you expect, so it's gotta be in the...
Lowell
August 28, 2015 at 8:50 am
the command prior to WITH MyCTE AS(...
must be terminated with a semicolon. that's probably where the issue likes.
that issue makes a lot of people precede their [WITH] to feature...
Lowell
August 28, 2015 at 8:35 am
nothing within SQL. SQL doesn't do files, technically.
SSIS or SSRS subscriptions can export data to native excel format.
otherwise, not really.. you have to use something external, like a CLR, Excel...
Lowell
August 28, 2015 at 8:27 am
Viewing 15 posts - 1,516 through 1,530 (of 13,460 total)