Forum Replies Created

Viewing 15 posts - 2,281 through 2,295 (of 13,460 total)

  • RE: dba setup rights (like ntfs)

    the question sounds a little bit like a turf war...don't want the dba to have full access to the box?

    the answer is it makes my job substantially harder if i...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: do you have a StripNonNumeric ITVF function?

    smacking myself in the head!

    I didn't think of using FOR XML to handle the concatenation; that, sir, is beautiful and inspired.

    You'd think i'd know better, so double kudos to...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: RESTORE DB FROM 2008 to 2012

    what you really want to do is a side by side server upgrade.

    on the 2008 server, you script out stuff, and run the scripts on the new server. no restoring...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Need code to export SQL result to PDF in SQL Server2008

    this is typically dones via Reporting Services or a third party tools.

    I've done it with a web service that cosumes a dataset and returns a binary blob, which cna be...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: How to update data in multiple tables at a time using sql

    looks like you posted actual or peudocode from MySQL, I'm guessing?

    In SQL Server, you'd have to use a procedure or a batch of code; functions are reserved for read access...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Unwelcome posts on our forums

    you could consider creating an easy way for some of the most prolific volunteers on the site to be able to feed a post to something for an automated removal;...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Rebuild Indexes not working

    check the size of the table; small tables under something like 1000 pages of data will not be affected by a reindex. that could be what you are seeing: small...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Agent job with powershell

    i've used Test-Path to see if files or folders exist, and make a decision from there to do my logic; create files, process files, copy them or whatever.

    #the detail file...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Import new files on FTP server

    There are 8000 files on the ftp site and you dont want to remove them from the site itself?

    You really need to do one of the following :

    1.remove them...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Import new files on FTP server

    I'm with Lempster;

    you have to either keep track of everything already processed in a database table or some otehr source, or move files that were processed to a different location(the...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Need to get object type for synonym base object (2012)

    what happens when you include the shcme aname explicitly?

    select schema_name(schema_id),name, object_id (base_object_name),object_id (schema_name(schema_id) + '.' + base_object_name) from sys.synonyms

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Migrating subscriptions from 2005 - 2008

    another thing i noticed, that was minor, but affected me nonetheless:

    2008 has better exports to excel: it is able to name worksheets, and a report that had data that started...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Migrating subscriptions from 2005 - 2008

    small world, i just had to do this as well.

    my hiccup was my original target server was 2008 standard, and not Enterprise, so i migrated reporting services, but the subscriptions...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Installing Reporting Services on existong server

    without the install disk, it's not possible; you'll have to find the disk.

    from there, it's pretty easy:

    backup the existing encryption key right away, before you do anything else.

    you need...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Creating Lat Lon Grid table from list of

    well, here's an example of how to generate 52452 integers based on your existing data;

    you'd probably want to plug that into a formula that calculates latitide increments for every 25...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 15 posts - 2,281 through 2,295 (of 13,460 total)