Viewing 15 posts - 676 through 690 (of 7,168 total)
Thanks for taking the time to write the article. Given the alternatives I strongly prefer employing a SQLCLR for implementing file system access from T-SQL. However, in this case a...
May 26, 2015 at 6:19 am
The database will not enforce it but your data supports the ideas of using rpt_id as a unique key.
So, just keep track of the rpt_id values you have already processed...
May 14, 2015 at 11:36 pm
preethi.kaliyamoorthy (5/14/2015)
Here is the DDL of the table.
CREATE TABLE [dbo].[t_adr_rpt_doc](
[rpt_id] [bigint] NULL,
[rpt_doc_tx] [varbinary](max) NULL,
[lst_upd_ts] [datetime] NOT NULL,
[lst_upd_user_id] [char](8) NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
Index:
CREATE CLUSTERED INDEX [idx_adr_rpt_doc_01] ON [dbo].[t_adr_rpt_doc]
(
[rpt_id] ASC
)WITH...
May 14, 2015 at 9:52 pm
If you setup Step 6 the same as Step 5 where it is a call to PowerShell.exe passing a script location on disk instead of a PowerShell step type with...
May 13, 2015 at 8:27 pm
Can you script the entire job out and post it here?
May 13, 2015 at 8:00 pm
Post the DDL for the source table including the key and index definitions.
May 13, 2015 at 7:41 am
preethi.kaliyamoorthy (5/13/2015)
Sorry if I am asking silly doubts. What is IsTransferred here. Is it a property for every table. I am just a beginner. I dont get it.
IsTransferred is not...
May 13, 2015 at 6:30 am
When you run in a job it uses a service account to run the commands. Ensure your service account can access all the resources needed by your script.
May 13, 2015 at 6:13 am
Stephanie Giovannini (5/6/2015)
CREATE TABLE test_numeric_parent (thekey NUMERIC(10,0) NOT NULL PRIMARY KEY
);
CREATE TABLE test_decimal_parent (
thekey DECIMAL(10,0) NOT NULL PRIMARY KEY
);
CREATE TABLE test_numeric_child (
thekey NUMERIC(10,0) NOT NULL,
x INT NOT NULL PRIMARY KEY
);
CREATE...
May 6, 2015 at 10:38 am
paul.knibbs (5/6/2015)
Orlando Colamatteo (5/5/2015)
May 6, 2015 at 7:48 am
Stephanie Giovannini (5/5/2015)
The system_type_id for decimal and numeric is not the...
May 5, 2015 at 10:18 pm
enoch.evans (5/5/2015)
Per https://msdn.microsoft.com/en-us/library/ms173773.aspx real is equivalent to float(24) not float(10).
From the article:
SQL Server treats n as one of two possible values. If 1<=n<=24, n is treated as 24. If...
May 5, 2015 at 5:37 pm
Steve Jones - SSC Editor (5/5/2015)
The explanation has been corrected. Thanks
Thanks Steve.
May 5, 2015 at 7:44 am
Jeff Moden (5/5/2015)
Orlando Colamatteo (5/5/2015)
Jeff Moden (5/4/2015)
May 5, 2015 at 7:29 am
Jeff Moden (5/4/2015)
May 5, 2015 at 5:58 am
Viewing 15 posts - 676 through 690 (of 7,168 total)