Viewing 15 posts - 2,626 through 2,640 (of 2,653 total)
my advise is to look at https://www.connectionstrings.com/ and see lots of possibilities - and obviously the manuals may have a bit more options.
May 2, 2016 at 12:57 pm
most important thing for now is ensuring that backups are done to all db's.
For new server - first of get it setup - make sure the server will allow for...
April 30, 2016 at 11:01 am
you can use these constructs to deal with partitions
select $partition.partitionfunctionname(partitioncolumn) as partitionnumber
,*
from mypartitionedtable
select *
from mypartitionedtable
where $partition.partitionfunctionname(partitioncolumn) = 5
April 28, 2016 at 5:15 am
I see to main issues here
1 - VM setup seems to indicate an issue if performance of HD's is that bad compared to the physical.
What is the VM...
April 27, 2016 at 4:27 pm
yes that would be the case - but easy enough to build the case statements in Excel for example - this is something I had to do on the last...
April 23, 2016 at 1:58 pm
DCOM maybe? see http://answers.flyppdevportal.com/MVC/Post/Thread/c7f52891-7920-480c-999e-183d8f1b6387?category=sqlintegrationservices for some possible issues
April 22, 2016 at 8:47 pm
select id
,product
,rentalrates
,row_number() over (partition by id order by RentalRates) as RowId
...
April 22, 2016 at 3:43 pm
have you tried RDP to the server (using the Sql Server agent ID) and then running the package from a windows command line with the DTEXEC command?
or even on...
April 22, 2016 at 2:14 pm
will the following satisfy your need for simplicity?
create view [table_normalized]
as
select t1.PersonID
, t1.col_name
, t1.col_value
from ( select t1.PersonID
...
April 22, 2016 at 2:01 pm
Installing Visual Studio 2015 does not prevent you from installing Sql Server Data Tools for visual studio 2012 or 2013 - you can have all 3 versions installed of SSDT...
April 22, 2016 at 1:23 pm
Gary Varga (4/21/2016)
frederico_fonseca (4/21/2016)
did either of you bother reading my reply? if you don't supply the server to the cmdlet Get-WmiObject it will only do the current server
I did bother....
April 21, 2016 at 11:27 am
did either of you bother reading my reply? if you don't supply the server to the cmdlet Get-WmiObject it will only do the current server
April 21, 2016 at 10:14 am
you were missing the -computer parameter
for powershell v3
Get-WmiObject Win32_LogicalDisk -computer (Get-Content c:\temp\computers.txt)|Select PSComputerName,DeviceID,VolumeName,Drive,DriveType,Size,FreeSpace|Export-Csv -NoTypeInformation -Delimiter "`t" -path c:\temp\alist.txt
the command above will output the values with double quotes -...
April 21, 2016 at 2:56 am
Gee.... this last post would warrant a holy war and a thread on its own.
Regarding the original post.
Before deciding on a ETL strategy you need to focus on what are...
April 19, 2016 at 4:56 pm
Viewing 15 posts - 2,626 through 2,640 (of 2,653 total)