Viewing 15 posts - 46 through 60 (of 476 total)
Sending the same message to the WebMaster does the trick
Done .. .thanks đŸ™‚
February 21, 2021 at 4:46 pm
I have an actual TALLY table in my database for Numbers ... is that bad? should I be using a Function?
The use of a physical Tally Table DOES...
February 21, 2021 at 4:39 pm
where CompanyId=1234 and SearchParts='A5ghf7598fdmlcpghjk'
Have you got an index on SearchParts, CompanyId (with the Keys in THAT order provided that CompanyID has many rows and SearchParts is reasonably unique)? If...
February 21, 2021 at 1:16 pm
I missed the point about starting with a view from day one. If the only reason for using the view is to allow for 'future' refactoring - then I...
February 21, 2021 at 1:06 pm
Thanks for your help Steve
Using them on once instance works, but you still have a name resolution issue. The db names are different, so the connection string is different....
February 19, 2021 at 11:08 am
I need to check when function was changed last time
sys.objects gained a [modifed_date] column at some point, but I can't remember which SQL Server version
SELECT *
FROM...
February 19, 2021 at 10:46 am
Dunno if this is any good as a suggestion, but if you DROP the database before the restore or it doesn't exist, then if the database exists after the...
February 19, 2021 at 10:40 am
So.... what do we call those scripts that are not idempotent?
Impotent? ... I'll get my coat ...
In my rollout scripts (mechanically generated) I have a #TempTable for anything that...
February 19, 2021 at 7:02 am
After the fact:
Restore database from backup (to a temporary database name Natch!), before the event, and compare the two
if you have transaction log backups then restore to POINT IN TIME...
February 19, 2021 at 6:55 am
I have an actual TALLY table in my database for Numbers ... is that bad? should I be using a Function?
Obviously there is a limit on the number of values...
February 19, 2021 at 6:48 am
The formatting will vary greatly among the business clients and can include inline style information or tables as well as strong, em, p, br, ul, ol, li tags
In that...
February 19, 2021 at 6:36 am
Further suggestion, hopefully the learned people here won't be horrified?
SET STATISTICS IO ON; SET STATISTICS TIME ON
... statements to be tested here ...
GO
SET STATISTICS IO OFF; SET...
February 19, 2021 at 6:22 am
A table variable is then declared and filled
We replaced Temp Tables with Table Variables when they first came out because we assumed they must be wonderful đŸ™‚ ......
February 19, 2021 at 6:18 am
Additional column would suffice.
Indeed ... but maybe it would be easier / safer to leave the existing "automated inventory collection process" unchanged and add a 1:1 table alongside for the...
February 19, 2021 at 6:09 am
It's often a good idea to have all code use a view to the table rather than directly modify the actual physical table, since it can make table changes...
February 19, 2021 at 6:05 am
Viewing 15 posts - 46 through 60 (of 476 total)