Viewing 15 posts - 286 through 300 (of 13,429 total)
ok i was able to duplicate the error and a resolution. here's the tiny differences.
I created am XLSX document , with a default sheet name of Sheet1.
i used...
March 19, 2018 at 7:50 am
yes, with a calculated, persisted column, that uses the real identity column.
Note this is just creating a formatted version of your identity, so it's a little repetitive.
You might...
March 18, 2018 at 8:14 am
the error is most likely inside your function.
DBO.get_account_id_by_invoice_date( i.invoice_id )
just based on the name, it's probably trying to find the "latest" invoice, but what if...
March 14, 2018 at 8:14 pm
my comments got lost somehow.
the issue the OP is encountering is the Service Account that the SQL Agent runs under does not have access to "C:\Users\myName\Desktop\WUpdates\"
that path is a private...
January 31, 2018 at 5:22 pm
January 29, 2018 at 8:16 am
definitely, use something that will create a proper filename, and handle ending slashes
the below returns "C:\NewFolder\20172018"
$filename = "20172018"
$file= "C:\NewFolder"+$filename
you mosdt likely need the file and...
December 22, 2017 at 8:51 pm
the naming thing is caused by using the sp_rename command; there are a few questions of the day on the same issue.
when you use sp_rename on a view/procedure/function,...
December 20, 2017 at 6:04 pm
December 20, 2017 at 5:55 pm
can't you add a windows group a user, grant it db_datareader then set the database to read only?
then you can add the 1000 users to the user group, and...
December 3, 2017 at 6:01 am
it's a two step process;
you have to associate the files at windows, and then tell SSMS that you want to edit those extensions as if they were sql code.
create...
November 16, 2017 at 4:50 pm
October 30, 2017 at 7:13 am
October 18, 2017 at 8:17 am
i am under the impression that each Invoke-sql command opens a connection, does the work, and closes the connection.
so you need all the commands in a single script, and not individual, multiple...
October 14, 2017 at 1:53 am
the labs.
practicing them multiple times, line by line.
every one of them.
I've been teaching a class for our local SQL Server User Group that does nothing...
September 26, 2017 at 9:19 am
Viewing 15 posts - 286 through 300 (of 13,429 total)