Viewing 15 posts - 2,251 through 2,265 (of 13,462 total)
if it is plain text, i'd just use bulk insert instead of building an SSIS package;
for me, that would be faster than anything else.
July 17, 2014 at 10:22 am
both ways are available via the extended proc xp_logininfo , but the limitation is the group/user has to be added to SQL first before you can enumerate them.
if you...
July 17, 2014 at 10:18 am
from a real command window, bcp has access to all shares that the caller(you) have access to;'
but if you call bcp from xp_cmdshell, it is almost certainly using a different...
July 17, 2014 at 6:46 am
it depends on the shape of the data you want to report;
Can All 50 queries results be placed in a temp table, or do you need each resultset? just...
July 14, 2014 at 2:23 pm
you'll wnat to set your session variable for dateformat to handle this for you:
SET DATEFORMAT DMY
select
cast ('14/02/2014' as date)
July 14, 2014 at 11:45 am
i think you just need to switch to a binary collation, otherwise accented letters like àâáãäå are all the same as 'a', right?
Select * From [Table] Where [Column] Like '%[^0-9a-zA-Z...
July 14, 2014 at 9:51 am
if SSMS scripting option below is selected, then dynamic SQL is generated to handle the if not exists, and that is what you are seeing.
you pasted just a piece of...
July 10, 2014 at 11:20 am
well, it's not going to be easy, but this will get you started;
because you are not using the right data types (a string containing '9:00 - 9:30a' instead of two...
July 8, 2014 at 2:39 pm
to grant a user the ability to see the metadata stuff for any object in a database, without granting access to the data within those objects, you can grant VIEW...
July 7, 2014 at 7:52 am
SQL server is probably not the target platform you want to use for this; is this supposed to send / retrieve information from the web service and return it to...
July 7, 2014 at 6:44 am
on the same server, i believe it's no problem; every query eventually gets resolved to all objects to thee part naming conventions...database.schema.object;
I have a system I babysit that we recently...
July 3, 2014 at 11:58 am
elham_azizi_62 (7/2/2014)
hello.this is one information in my varbinary column:
0x504B0304140002000800335EF7362920563A3AB<snip>
please edit your post and remove that varbinary string. it does not help, and just muchs up teh post to make it...
July 3, 2014 at 5:38 am
there is a YEAR function that returns an integer, that can do what you are asking:
there is also a DATEPART function that can do the same, but you can pull...
July 3, 2014 at 5:25 am
gajayku (7/2/2014)
Thanks for quick response. Let assume that I have schema of both source and destination in the following formats.
In excel File, I have columns (Id, Name, Salary) and...
July 2, 2014 at 7:27 am
where is the comparison going to occur? in a script task , likecomparing rows in a datatable DataTable to DataTable, for example?
on the SQL server so you can use...
July 2, 2014 at 7:01 am
Viewing 15 posts - 2,251 through 2,265 (of 13,462 total)