Viewing 15 posts - 2,326 through 2,340 (of 2,647 total)
declare @tbl table
( input varchar(20)
)
insert into @tbl
select '1/0/1900' union all
select '1/1/1900' union all
select '1/2/1900' union all
select '1/7/1900' union...
July 5, 2018 at 12:10 pm
select input,
Case when...
July 5, 2018 at 11:22 am
RTFM is handy sometimes.
https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/get-ciminstance?view=powershell-6
Get-CimInstance [-ComputerName <String[]>] ....
just build a string array with the names of the computers you need to query and pass it to...
July 5, 2018 at 6:43 am
Tabular and columnstore by default use compression - and you can't really change it the same way you do the normal data - columnstore you can define one of COLUMNSTORE or...
July 4, 2018 at 5:30 pm
Assuming that your excel source does not have as base date 1904 the following will be a good basis for what you need
including a bit of explanation https://stackoverflow.com/questions/19721416/formula-to-convert-date-to-number
July 4, 2018 at 12:41 am
are you sure that is the real bad one? this proc calls 2 others
EXECUTE Getemailaddress @customerId, @toEmail output
and EXEC dbo.CreateDDForMissingCheckoutOrCheckin that the very end
As the first...
July 3, 2018 at 10:09 am
Although possible it is not what I would call dynamic in that everytime a new table is required or the table metadata changes you would need to regenerate the SSIS...
June 29, 2018 at 4:06 am
Hi,
Data Vault is as any other datawarehouse model - in fact quite similar to Kimball in that grossly speaking DV Hubs+Sat == Dimensions and Links+Sat == Facts.
June 23, 2018 at 6:58 am
If you setting up a DEVelopement server then no licensing is required - although to be on the safe side it may be advisable to have all the users register...
June 20, 2018 at 6:44 am
Are you doing Tabular or Dimensional processing? if tabular standard edition is limited to 16GB which may not be enough for your volumes. And assume 2-3 times the standard size...
June 20, 2018 at 6:31 am
Answer is "it depends"... on server spec, server load, usage of each functionality.
Only you can know what are the requirements for each individual item - based on that...
June 20, 2018 at 6:17 am
The answer to the question asked is NO - Sql Server Management Studio is just a tool - not a database and has no way to be connected to or...
June 20, 2018 at 6:06 am
In my company we use it extensively and it is the default when creating any new database.
2 Core databases
- CRM - 3TB in size -...
June 20, 2018 at 12:51 am
what version of
SSDT
Visual Studio
Excel
and bitness.
Not all combinations are allowed
June 18, 2018 at 11:21 am
Viewing 15 posts - 2,326 through 2,340 (of 2,647 total)