Viewing 15 posts - 7,276 through 7,290 (of 13,877 total)
uzn2010 (4/12/2016)
I'm using derived column transformation editor to remove leading zeroes from the number. Can anyone help me how to do it?
Numeric data imported from Excel does not have leading...
April 12, 2016 at 12:13 pm
Are you able to provide sample DDL, data with DML and desired results, as described in the link in my signature? It would make things clearer.
April 12, 2016 at 9:58 am
oneteabag (4/12/2016)
I have a Source table Tbl_Src that has 5 columns:
Company_id,Salesrep_sales_date,Product_id,sales_Amt
I have a process that runs and re-calculate the sales_amt and re-distribute portion of the sales to...
April 12, 2016 at 9:55 am
Change your CATCH block to include a THROW rather than a SELECT ...
I suggest you add this before creating the temp table, just in case:
if Object_Id('tempdb..#BBMDetail','U') is not null
drop table...
April 12, 2016 at 6:10 am
Can I suggest a non-looping way of doing this?
INSERT dbo.test
(
...
April 12, 2016 at 6:05 am
Phil Parkin (4/11/2016)
I am getting the tilde under the 3 in the editor and it states that "Could not find the stored procedure", but ...
Is odd.
I don't know what...
April 11, 2016 at 4:13 pm
jameslauf (4/11/2016)
I want to hard code a...
April 11, 2016 at 3:50 pm
This
I am getting the tilde under the 3 in the editor and it states that "Could not find the stored procedure", but ...
Is odd.
I don't know what is happening,...
April 11, 2016 at 1:56 pm
Very strange indeed.
Try this one:
GO 3
SELECT
FROM [Reporting].[WorksheetReporting]
Do you see the error once or three times?
April 11, 2016 at 1:22 pm
I am no PoSh / XML expert, but I did find this[/url] blog which seems to have everything covered pretty well. Maybe it will do what you need.
April 11, 2016 at 1:19 pm
If you run just these statements, do you still see the error?
USE [CmsTestDB]
GO
And how about
GO
SELECT
FROM [Reporting].[WorksheetReporting]
April 11, 2016 at 1:09 pm
SQLTougherGuy (4/11/2016)
I am trying to update a connection string in an XML file using POWERSHELL. I have the following code that is not working. I have a code snippet for...
April 11, 2016 at 1:07 pm
fantom (4/11/2016)
Source and target editions are both enterprise.
Enterprise on a dev server?
April 11, 2016 at 7:36 am
fantom (4/11/2016)
Database engine services
sql server replication
full-text and semantic extractions for...
April 11, 2016 at 7:11 am
Satiz (4/10/2016)
Phil Parkin (4/10/2016)
Satiz (4/10/2016)
Satiz (4/9/2016)
Luis Cazares (4/8/2016)
Wild idea:Instead of using dynamic SQL, use synonyms for the cross-database calls.
Thanks, buddy ...I will try by using the synonym.
Hey guys i tried...
April 10, 2016 at 9:33 am
Viewing 15 posts - 7,276 through 7,290 (of 13,877 total)