Viewing 15 posts - 2,281 through 2,295 (of 2,567 total)
The sample provided follows standard definition for usage from mainframe style extract files - or PC Cobol files that follow old conventions.
But not just those follow these - I...
June 4, 2018 at 11:59 am
pseudo code
read sharepoint list - load onto datatable Invoices
using dbconnection to sqldb -- using transactionscope
{
create temp table (#invoices) -- execute nonquery
...
June 4, 2018 at 11:29 am
offcourse not - instead of using my code you reverted back to your original one
June 4, 2018 at 8:21 am
$File=gci \\abcd\efgh\ijkl | select -last 1
$Attachment = $File.FullName
you may need to enclose the filename with double quotes on the send mail step
June 4, 2018 at 6:40 am
$File="gci \\abcd\efgh\ijkl | select -last 1"
$Attachment = $File
I assume that what you intended here was to get the last file on the folder in question - but...
June 4, 2018 at 3:27 am
Assuming your dates always have the _ before them the following will work
declare @t table (a varchar(50))
insert into @t values ('c:\abc_20181008.txt')
insert into...
June 4, 2018 at 1:11 am
Seen many developers fall under that trap. Wish that would raise an error.
June 2, 2018 at 11:34 am
The following is one way of doing it.
Requires that you load the files onto a staging table with a identity column and 2 other columns, reckey and data...
June 2, 2018 at 11:27 am
Do they do the queries through SSMS? if so most likely it is the session settings they use.
check the different users on tools-->options-->Query Execution-->ANSI
If through another tool...
June 2, 2018 at 9:56 am
you can get the developer edition here - for non production use.
https://www.microsoft.com/en-ie/sql-server/sql-server-downloads
once you tested whatever you need you will have to decide if you need enterprise...
May 31, 2018 at 2:50 pm
Maybe failing on the snapshot bit which uses different ports
Replication connections to SQL Server use the typical regular Database Engine ports (TCP port 1433 for the...
May 31, 2018 at 6:33 am
getting ride of them quite fast - just open one of them, report it 3 times (the same one) and puff all from that user are gone in the wind
May 31, 2018 at 4:00 am
Can you supply the DDL for the original tables, not the ones you have altered to add the newid column
May 31, 2018 at 3:58 am
May 30, 2018 at 6:23 pm
If your worry is just the index fragmentation you probably can avoid it if you change your application to generate a sequential guid instead of a "normal" guid.
May 30, 2018 at 7:31 am
Viewing 15 posts - 2,281 through 2,295 (of 2,567 total)