Viewing 15 posts - 706 through 720 (of 7,168 total)
Some questions about your requirements...
- Are you needing to completely replace the local sales data (i.e. delete all local rows then populate all rows from hosted database) or do historical...
March 20, 2015 at 10:14 pm
Here is a PowerShell example:
#env settings
$srv = "orlando-surface\sql2012"
$db = "tempdb"
$dir = "C:\@\"
#########################################################################
#nothing below here changes
#build connection string
$connStr = "Server=$srv;Database=$db;Trusted_Connection=True;"
#connect to the database
$conn = New-Object System.Data.SqlClient.SqlConnection($connStr)
$conn.Open()
#get list of files from directory
foreach($file...
March 20, 2015 at 9:54 pm
kevaburg (3/16/2015)
Grant Fritchey (3/16/2015)
March 20, 2015 at 8:51 pm
bobjbain 6094 (3/16/2015)
You can tie a spid back to a host process and host name...
March 20, 2015 at 4:26 am
Kelvin Lush (3/19/2015)
March 20, 2015 at 3:13 am
Sangeeth878787 (3/17/2015)
If I need to give access more than 300 users only on two views, these views going to be used in SSRS and Tabular Model. So I need...
March 17, 2015 at 8:32 am
March 4, 2015 at 7:44 am
Rich Parsons (2/18/2015)
February 18, 2015 at 7:10 am
About a year after this thread I wrote an article on the topic. It targeted 2005 and 2008 but the technique works on 2012 as well. If you read the...
February 4, 2015 at 7:57 pm
I know this is a very old thread but I am being confronted with a similar proposal, albeit nowhere near the volumes initially, where QNs and Service Broker would be...
January 12, 2015 at 10:32 pm
Check out the SQL Server Database Project offered within SQL Server Data Tools. The Database Project supports managing the properties of a database (e.g. things like the recovery mode and...
December 23, 2014 at 1:25 am
Check out the Windows 1252 map, number 253.
http://en.m.wikipedia.org/wiki/Windows-1252
If you can represent a character with a single byte (253<255, max number storable in a byte) then you do not need Unicode...
December 18, 2014 at 9:08 pm
Just for the record, CHAR(253) is not Unicode.
December 17, 2014 at 7:03 pm
mitesh.temre (12/17/2014)
lvbntapasvi (9/6/2014)
I am new to SSIS, and have started using it from the past 3 weeks. I have a task where in I am supposed to access the...
December 17, 2014 at 4:11 am
That should do it. I roll a job to all my instances that does just that, as a matter of standard operating procedure. Sometimes I will need to add steps...
December 3, 2014 at 8:32 am
Viewing 15 posts - 706 through 720 (of 7,168 total)