Viewing 15 posts - 136 through 150 (of 13,451 total)
Incorrect syntax near '@CheckSum' to me implies a missing comma before, or an equals sign after;
as others had posted, if we see the whole command you executed, it might be...
September 30, 2019 at 4:39 pm
right , the procedures are only part of the settings you need to use.
you need to use both WHERE [arr].Groups LIKE @GroupSearchTerm AND [arr].Users LIKE @UserSearchTerm" in the proc, not...
September 29, 2019 at 12:22 pm
you wnat your SSRS report to have two text boxes or dropdowns for the parameters, and to call a procedure.
the procedure then might look something like this, so if they...
September 26, 2019 at 9:19 pm
not to that level of granularity, but there is a way to code around that.
take a look at this post from a while back where i posted a complete solution...
September 25, 2019 at 7:28 pm
i hope i am not reading this wrong, but it looks like what you want to do is instead of using SELECT *, to select explicit column names.
good job on...
September 24, 2019 at 9:19 pm
then in that case, why don't you simply put all of the servers in Central Management Servers, and execute then via SSMS all together?
stick with the tools you know, isntead...
September 24, 2019 at 6:00 pm
with powershell, here is how i would do it.
Assuming instances_list.txt is a single column list with no header.
also assuming the script has USE [somedb] or fully qualified names so it...
September 24, 2019 at 4:58 pm
on each server, can you check this Server Setting?
Perform Volume Main task for fast database creation.
if you changed the service account after the initial install, i might expect to see...
September 16, 2019 at 12:45 pm
here's a snippet i use:
this will return all failures since the given date(first of the year is my parameter)
you can tweak it from there, i think.
DECLARE @dt...
September 13, 2019 at 5:26 pm
the SQL Import Wizard will let you select all 260 tables in one go, and save the package for future editing, execution and modification.
one package, 260 data flows.

September 10, 2019 at 11:32 am
does the application NEVER write to the database and needs to be fixed, or does the applicaiton writing to the database works for a while, and the stops writing?
there are...
September 9, 2019 at 9:16 pm
the code I posted has problems?
yes the code has problems, since . the code you pasted is incomplete.
for what you pasted, besides having a lot of whitespace so the...
September 5, 2019 at 2:58 pm
if you are sure they are using the same sources, then how about a quick and dirty row count and totals by columns?
add some additional group bys to look at...
September 5, 2019 at 1:36 am
i might consider checking the ansi and date_format sessions settings for default dates, as they could be different on the server, running as an agent , vs running in SSMS
ie...
August 27, 2019 at 8:55 pm
without using .NET, then no, the specific file extension *.msg ends up requiring C# to do something like this, since the msg is a binary file:
you could save as text...
August 26, 2019 at 12:04 am
Viewing 15 posts - 136 through 150 (of 13,451 total)