Viewing 15 posts - 6,661 through 6,675 (of 13,876 total)
oneteabag (9/22/2016)
September 22, 2016 at 10:55 am
Jerid421 (9/22/2016)
I am relatively new to SSIS packages and am in the process of creating my own data warehouse from an existing data warehouse. There are about (21) tables...
September 22, 2016 at 10:54 am
Brandie Tarvin (9/22/2016)
Phil Parkin (9/22/2016)
Brandie Tarvin (9/22/2016)
Thanks, guys. But you're all missing the point of my question.I withdraw it since no one understands what I'm asking for.
Yep, I am...
September 22, 2016 at 10:47 am
jwiesman (9/22/2016)
I'm trying to write a "quick and dirty" package in VS2010 to provide me space usage for a database.
This is the query I'm now running manually in SSMS:
use...
September 22, 2016 at 10:40 am
oneteabag (9/22/2016)
I have a quick question about data flow process best practice as follows:
I am pulling data from various data source using SQL code (SP & SSIS PKG) to...
September 22, 2016 at 10:13 am
Brandie Tarvin (9/22/2016)
Thanks, guys. But you're all missing the point of my question.I withdraw it since no one understands what I'm asking for.
Yep, I am totally puzzled as to...
September 22, 2016 at 10:10 am
CharlieRL (9/22/2016)
September 22, 2016 at 9:29 am
Something like this?
SELECT tbl.tbl
, sql = CONCAT('DROP TABLE ',tbl.sch,'.',tbl.tbl)
FROM sys.dm_db_partition_stats ddps
CROSS APPLY (SELECT sch = OBJECT_SCHEMA_NAME(object_id)
...
September 22, 2016 at 8:00 am
I'd write a query to identify (only) the empty tables. Add a column to the query which returns the 'DROP TABLE ...' statement, for the selected table.
Execute the query, copy...
September 22, 2016 at 7:03 am
JALLYKAMOZE (9/21/2016)
NULL
Starting copy...
SQLState = 22005, NativeError = 0
Error = [Microsoft][SQL Server Native Client 10.0]Invalid character value...
September 21, 2016 at 10:44 am
JALLYKAMOZE (9/21/2016)
User name not provided, either use -U to provide the user name or use -T for Trusted Connection
usage: BCP {dbtable | query} {in | out | queryout | format}...
September 21, 2016 at 7:59 am
Can you paste the text of the error message, please?
September 21, 2016 at 7:28 am
GilaMonster (9/21/2016)
Leave .net out, other than to call the stored procedure. Write the load process in T-SQL in a single batch. Do the...
September 21, 2016 at 7:02 am
Sue_H (9/20/2016)
Phil Parkin (9/20/2016)
Sue_H (9/20/2016)
September 21, 2016 at 5:57 am
This feature is deprecated (see here).
So I suggest you consider an SSIS/CDC solution, as recommended by MS, instead.
September 20, 2016 at 5:04 pm
Viewing 15 posts - 6,661 through 6,675 (of 13,876 total)