Viewing 15 posts - 1,621 through 1,635 (of 13,469 total)
it might not be mentioned, as it's a transitory file extension:
[http://fileinfo.com/extension/wrk
DeveloperMicrosoft
Popularity
2.0 (1 Vote)
CategoryDatabase Files
File Format Description
Database backup file created by SQL Server, a relational database...
July 23, 2015 at 11:56 am
what you are asking cannot be done in SQL.
SQL does not have image processing, or export to pdf, so you'll need to create an application that does the work...
July 23, 2015 at 5:33 am
Marsha (7/22/2015)
Is the SQL Browser running on the server?Can you take me through the steps you used to create the instances?
this. if you don't have the service running, you must...
July 22, 2015 at 7:52 pm
the convert function has an optional parameter for style/number of decimals? when the converted value is a decimal/float.
https://msdn.microsoft.com/en-us/library/ms187928.aspx
money and smallmoney Styles
When expression is money or smallmoney, style can be one...
July 22, 2015 at 10:50 am
you must have a trace or extended event in place,.
SQL does not capture who ran select statements /users info unless you create something to capture it.
July 22, 2015 at 10:48 am
theres some really good db comparison tools out there, like redgatecompare, or dbdiff , or a database schema comparison if you have the ultimate version of visual studio. they do...
July 20, 2015 at 5:45 pm
the modern database mail uses a service broker, so it's fire and forget; you call sp_send_dbmail with the right parameters, and the proc returns immediately, and the service broker tries...
July 19, 2015 at 2:57 pm
ok, this is tried and true code for an ACE driver example i just retested.
the Sheet in excel is named AK.
does modifying either of these s to be your document...
July 17, 2015 at 2:31 pm
i've run into issues where the \users folders are extra protected;
i always use something not under mydocuments\mydownlaods\mydesktop, like C:\Data\SQLImportTrim.xls instead of C:\Users\home\Desktop\SQLImportTrim.xls',
can you try moving the file to a non-protected...
July 17, 2015 at 2:14 pm
adding quick consumable info for others to run with the ball:
;WITH TableA([date],[ID])
AS
(
SELECT '2012-09-21','1' UNION ALL
SELECT '2012-09-28','1' UNION ALL
SELECT '2012-10-05','1' UNION ALL
SELECT '2012-10-12','1' UNION ALL
SELECT '2012-10-19','1' UNION ALL
SELECT '2012-10-26','1' UNION ALL
SELECT...
July 17, 2015 at 11:18 am
well the est guess method based on column names might be a starting point, like you mentioned.
how about this:
if can you assume in your data sources that the first column,...
July 17, 2015 at 8:36 am
i think the issue is xp_cmshell;
as i remember it, with xp_cmdshell you are limited to a single pair of double quotes to a command, so ONE of your two paths...
July 17, 2015 at 6:07 am
JimK 28184 (7/16/2015)
July 17, 2015 at 5:56 am
So is everyone goi g to put in th3 same credentials, like Reportreader /SOMEPASSWORD? or will each user have a set 9f sql credentials
July 16, 2015 at 5:13 pm
Yeah evey table, view, proc and function potentially, but you could script it from the metadata in sys.objects, a d i think you d be up and running.
July 16, 2015 at 5:09 pm
Viewing 15 posts - 1,621 through 1,635 (of 13,469 total)