Viewing 15 posts - 121 through 135 (of 147 total)
My take on it. Prob better ways to get the result required
DECLARE @TempData TABLE ( tdID BIGINT IDENTITY(1,1),anumber BIGINT )
INSERT INTO @TempData
...
December 19, 2013 at 2:45 am
Just tried this on some text fields and it worked as expected for me. what types are the fields in question?
November 25, 2013 at 9:16 am
Try the following link
http://www.sqlteam.com/tools/bcphelper.zip
I use this when creating anything using BCP and saves me a load of time.
August 9, 2013 at 4:57 am
Pop a text box in the page footer with the information you want.
In the text box visibility properties hide based on the following expression
=Globals!PageNumber<>Globals!OverallTotalPages
This will only display on the final...
June 21, 2013 at 9:34 am
Quick google search threw up this:
http://support.microsoft.com/kb/937277
Have you considered / checked?
June 20, 2013 at 9:48 am
We had a similar problem where a CSV file we get supplied either has 275 or 256 columns.
To resolve this we read in the first line of the CSV file...
June 20, 2013 at 9:25 am
Can be done quite easily in SSIS.
See attached SSIS solution which will look through a directory and pop a message up when a xls file is found. All you...
June 20, 2013 at 9:18 am
As part of the data flow in SSIS add a Derived Column task (image attached), inside that, give it a Derived Column Name, set it as a new column or...
June 20, 2013 at 7:09 am
SELECT DISTINCT o.name, o.type_desc, p.name, p.type_desc
FROM sys.sql_dependencies d
INNER JOIN sys.objects o
ON d.object_id = o.object_id
INNER JOIN sys.objects p
ON d.referenced_major_id = p.object_id
Worth a try...
May 13, 2013 at 8:38 am
You could try grouping by user and doing a compare of the previous user to the current user being looked at possibly
February 13, 2013 at 8:11 am
http://blog.strictly-software.com/2011/11/error-copying-tables-importing-or.html
This seems to have a solution
February 12, 2013 at 6:07 am
You can do this sort of. The problem comes from the fact that you can (as far as I can tell) only look at the previous record within a...
February 12, 2013 at 3:47 am
You could change you code like the example below
WITH testdata
AS ( SELECT 222 AS ID...
February 12, 2013 at 3:19 am
Unless i'm missing the point??
The stored procedure exists on the server. The application connects to that server. If you need to change the server in the application then...
February 5, 2013 at 8:43 am
Viewing 15 posts - 121 through 135 (of 147 total)