Viewing 11 posts - 1 through 11 (of 11 total)
I'd consider invoking the package using a sql server broker queue in conjunction with a trigger on a table (some effort required) or more tactically, just a sql job polls...
March 10, 2019 at 12:09 am
I don't get the opening and closing balance figures, where/how/what is the business logic there? I would expect to have some attribute of a client or invoice that holds a...
March 9, 2019 at 10:00 am
Have you considered a trace for locks? A theory to test would be see if when the dba's run it (If they're doing so intraday), whatever's locking the process during...
March 9, 2019 at 3:43 am
is this in relation to a median over a very large dataset and what is the most performant way to return the aggregate?
March 9, 2019 at 12:02 am
the result is correct. by convention whole numbers(integers) are not padded with leading zeros, decimals are however.
March 8, 2019 at 4:17 pm
yes, you can read xls files into sql server using openrowset(), it requires specific permissions and is typically used for loading data into a table.
If it were possible...
March 8, 2019 at 3:58 pm
I would probably opt for a set based approach where you create a list of dates and then join them against your target dataset to pick out what you need.
March 8, 2019 at 3:42 pm
two ways i could think of would be the following:
option 1. maintain an external process in the form of a script which builds the SQL project files based on some...
March 8, 2019 at 2:07 pm
Hi,
Very interesting article. However, I wasn't sure if the reason for architechting this solution was to facilitate log shipping replication for SQL 2000 and below, or as a way of...
July 1, 2010 at 3:50 am
it's true is kind of rubbish because it can't handle multiple paths. The Maintenance plan executes a command similar to the one below:
xp_delete_file 0,'+@backuppath+',N''bak'','+@DeleteDate+',1
@backuppath speaks for itself
@DeleteDate is the...
March 19, 2010 at 3:36 am
have you looked into the log shipping executables used by SQL to transfer log files when implementing logshipping?
That would be a really good way of copying as you could probably...
March 19, 2010 at 3:26 am
Viewing 11 posts - 1 through 11 (of 11 total)