Viewing 15 posts - 1 through 15 (of 127 total)
Thank you Forever for your Forever help!
June 17, 2016 at 7:27 am
create table #Table1 (
id int,
value varchar(10)
)
create table #Table2 (
id int,
value varchar(10)
)
insert into #Table1 values...
June 14, 2016 at 12:50 pm
I get in EXCEL sheet. I convert them into CSV which gives me bit flexibility to run SSIS package.
June 12, 2016 at 3:12 pm
yes, it looks like regional settings into browser itself.
June 1, 2016 at 12:26 pm
yes I am using still date/time parameter. in 2 out of 3 laptop is show date like 6/1/2016 and in one laptop it shows 6/JAN/2016.
June 1, 2016 at 10:40 am
I figured it out, here is the solution.
Put following for CRM_URL parameter in SSRS report. https://crm.abc.com/CRMReports/viewer/drillopen.aspx
AND when you click on client's name in table put following into Action...
May 12, 2016 at 11:10 am
it's much faster to import data into our software from 4 small tables as compared to one big table. that's why.
April 28, 2016 at 1:54 pm
Because we do this exercise every week splitting one table into 4. So when we do this we don't care about what's in there into those 4 tables so we...
April 28, 2016 at 12:33 pm
Michael L John (4/28/2016)
ALTER PROCEDURE Doc124NEW_new
(
@DMIGRATIONNEW nvarchar(255)
)
AS
SET NOCOUNT ON
SET XACT_ABORT ON
DECLARE @ErrorMessage varchar(2048);
DECLARE @ErrorSeverity INT;
DECLARE @ErrorState INT;
DECLARE @SQL AS NVARCHAR(MAX)
DECLARE @Count int...
April 28, 2016 at 11:31 am
Only one question now!!
How I can become like you pro in SQL
Please answer. I am ready to do whatever it takes.
BY the way that solution worked fine.
April 28, 2016 at 11:07 am
All I am trying to do is to split the table records into 4 fixed name tables equally.
So all was working fine until source table name was hard coded, since...
April 28, 2016 at 10:38 am
Looks like that error is solved and got the new one! Neverending!
Error message
Invalid column name 'cindex'.
SP
ALTER PROCEDURE Doc124NEW_new (@DMIGRATIONNEW nvarchar(255))
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets...
April 28, 2016 at 10:15 am
I am getting following error.
Msg 245, Level 16, State 1, Procedure Doc124NEW_new, Line 36
Conversion failed when converting the varchar value 'SELECT TOP (' to data type int.
Here is my little...
April 28, 2016 at 9:58 am
GilaMonster (4/7/2016)
CREATE TABLE #Test...
April 7, 2016 at 8:01 am
Viewing 15 posts - 1 through 15 (of 127 total)