Viewing 15 posts - 31 through 45 (of 52 total)
...
Shifting gears...
October 15, 2018 at 7:07 am
No, it's a good question.
You could look after:
September 23, 2018 at 3:12 am
You need char(11).select convert(char(11), getdate(), 100) as DefaultDateFormat;
See https://docs.microsoft.com/en-us/sql/t-sql/functions/cast-and-convert-transact-sql
September 21, 2018 at 9:32 am
Nice,
Also add schema, first in select"Schema" = object_schema_name(Obj.object_id),
And may be the following after the inner join sys.objects Obj on Obj.object_id=Indx.object_id
line:
[code...
September 18, 2017 at 7:52 am
Hi, how many chars is the varchar column?
Possible extend it, and using a base 64 string (hex), and use convert from varbinary to varchar?
August 3, 2017 at 6:37 am
Thanks Ski, fix an update. Here is the correct links
https://docs.microsoft.com/sv-se/sql/ssms/visual-db-tools/visual-database-tools
https://www.mssqltips.com/sqlservertip/1816/getting-started-with-sql-server-database-diagrams/
March 23, 2017 at 1:52 pm
may be the following can help
importing large SQL files
March 23, 2017 at 7:36 am
Sample for IP-4 numbers Using a CHECK constraint to validate IP addresses
December 12, 2016 at 2:05 am
Nice feature using dbo.sp_HelpText.
Note, that all CREATE is changed to ALTER!
November 22, 2016 at 12:10 am
1. Should we mark all procedures for recompilation, when upgrading to a new server version?
2. When the database is changed, like adding indexes or changing data in indexed columns, is...
October 13, 2016 at 11:07 pm
August 10, 2016 at 12:28 am
February 10, 2016 at 3:20 am
Is it for documentation of known existing database?
You could use the builtin diagram function.
February 10, 2016 at 3:17 am
Option 1, using separate schema, dbo, product1, product2, product3, product4, seems a good choice. Move common things to the dbo schema.
Any migration to one database in future?
February 9, 2016 at 6:19 am
Lynn Pettis (10/21/2015)
select
ColumnA,
count(*)
from
dbo.MyTable
group by
ColumnA
having
count(*) >...
October 22, 2015 at 12:06 am
Viewing 15 posts - 31 through 45 (of 52 total)